-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@plannotator/webtui",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"description": "Importable Xterm terminal sessions for coding agents with a local node-pty backend.",
"repository": {
"type": "git",
"url": "git+https://github.com/plannotator/webtui.git"
},
"bugs": {
"url": "https://github.com/plannotator/webtui/issues"
},
"homepage": "https://github.com/plannotator/webtui#readme",
"keywords": [
"terminal",
"tui",
"xterm",
"pty",
"agent",
"react"
],
"sideEffects": [
"./src/react/webtui.css"
],
"main": "./dist/core/index.js",
"types": "./dist/core/index.d.ts",
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./styles.css": "./src/react/webtui.css"
},
"files": [
"assets",
"dist",
"src/react/webtui.css",
"LICENSE",
"README.md"
],
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "oxlint .",
"test": "vitest run",
"check": "npm run lint && npm run typecheck && npm run test && npm run smoke",
"build": "tsc -p tsconfig.build.json",
"prepack": "npm run build",
"prepublishOnly": "npm run check",
"smoke": "tsc -p tsconfig.build.json && node smoke/import-smoke.mjs",
"example:build": "vite build --config examples/basic/vite.config.ts",
"example:start": "node examples/basic/server.mjs"
},
"dependencies": {
"@xterm/addon-fit": "0.12.0-beta.216",
"@xterm/addon-unicode11": "0.10.0-beta.216",
"@xterm/addon-web-links": "0.13.0-beta.216",
"@xterm/addon-webgl": "0.20.0-beta.215",
"@xterm/xterm": "6.1.0-beta.216",
"lucide-react": "^0.577.0",
"node-pty": "^1.1.0",
"ws": "^8.20.0"
},
"peerDependencies": {
"react": "^18.3.0 || ^19.0.0",
"react-dom": "^18.3.0 || ^19.0.0"
},
"devDependencies": {
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@types/node": "^25.6.0",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.2.0",
"oxlint": "^1.63.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20"
}
}