-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.37 KB
/
package.json
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
{
"name": "xterm-web-ide",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier -w . --experimental-ternaries",
"start": "yarn package && node dist/index.cjs",
"package:client": "rimraf out/ && yarn build && mkdir -p out/ && cp -r index.html dist/ assets/ out/",
"package:server": "tsc --module commonjs supervisor-helper.ts --outdir out --esmoduleinterop true --declaration && mv out/supervisor-helper.js out/supervisor-helper.cjs && ncc build -m server.cjs -o dist/ --target es2022 --source-map",
"inject-commit": "git rev-parse HEAD > dist/commit.txt",
"package": "yarn build && yarn package:server && yarn inject-commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitpod-io/xterm-web-ide.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/gitpod-io/xterm-web-ide/issues"
},
"homepage": "https://github.com/gitpod-io/xterm-web-ide#readme",
"dependencies": {
"@gitpod/gitpod-protocol": "^0.1.5-main.6983",
"@gitpod/supervisor-api-grpc": "0.1.5-main-gha.10852",
"@grpc/grpc-js": "^1.11.1",
"@xterm/addon-attach": "^0.11.0",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-ligatures": "^0.9.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"buffer": "^6.0.3",
"express-rate-limit": "^7.3.1",
"fetch-retry": "^5.0.3",
"lodash": "^4.17.21",
"node": "20",
"reconnecting-websocket": "^4.4.0"
},
"devDependencies": {
"@open-wc/building-rollup": "^3.0.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.11",
"@vercel/ncc": "^0.38.1",
"deepmerge": "^4.3.0",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"node-pty": "^1.0.0",
"prettier": "^3.3.3",
"rimraf": "^4.1.2",
"rollup": "^4.22.4",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"sass": "^1.58.3",
"typescript": "^5.5.3",
"vite": "^5.3.4"
}
}