-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.9 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
{
"name": "termshare",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "npm run build:protobuf && npm run build:tsc && npm run build:web",
"build:protobuf": "npx pbjs -I proto --target static-module --wrap commonjs --out src/proto/web.js src/proto/web.proto && npx pbjs -I proto --target static-module --wrap commonjs --out src/proto/repeater.js src/proto/repeater.proto && mkdir -p dist/proto/ && cp src/proto/*.js dist/proto/ && npx pbts --out src/proto/web.d.ts src/proto/web.js && npx pbts --out src/proto/repeater.d.ts src/proto/repeater.js",
"build:tsc": "tsc",
"build:web": "cd web && npm run build",
"dev": "npx ts-node src/run-develop.ts",
"install-all": "npm install && cd web && npm install",
"lint": "eslint src --ext .ts",
"lint-and-fix": "eslint src --ext .ts --fix",
"ncu": "npx npm-check-updates"
},
"author": "Jochen Wierum <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.13",
"@types/ws": "^8.2.2",
"async-mutex": "^0.3.2",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"express": "^4.17.2",
"express-static-gzip": "^2.1.1",
"node-pty": "^0.10.1",
"protobufjs": "~6.11.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"winston": "^3.4.0",
"ws": "^8.4.2",
"xterm-addon-serialize": "^0.6.1",
"xterm-headless": "^4.16.0"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"npm-check-updates": "^12.2.1",
"typescript": "^4.5.5",
"uglify-js": "^3.14.5",
"xterm": "^4.16.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.6"
},
"files": [
"lib",
"bin"
],
"bin": {
"termshare": "./bin/index.js"
}
}