-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathpackage.json
69 lines (69 loc) · 2.72 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
{
"name": "ws-scrcpy",
"version": "0.7.1",
"description": "Web client for scrcpy and more",
"scripts": {
"clean": "npx rimraf dist",
"build:dev:webpack": "webpack --config webpack/ws-scrcpy.dev.ts",
"build:prod:webpack": "webpack --config webpack/ws-scrcpy.prod.ts",
"copy:license": "node -e \"require('fs').copyFileSync('LICENSE', 'dist/LICENSE')\"",
"dist:dev": "npm run build:dev:webpack && npm run copy:package.json && npm run copy:license",
"dist:prod": "npm run build:prod:webpack && npm run copy:package.json && npm run copy:license",
"dist": "npm run dist:prod",
"build:qvhack:frontend": "webpack --config webpack/ws-qvhack.dev.ts",
"dist:qvhack:frontend": "npm run build:qvhack:frontend && npm run copy:license",
"copy:package.json": "node -e \"const j=require('./package.json');const {name,version,description,author,license,dependencies,scripts}=j; const p={name, version, description,author,license,dependencies}; p.scripts={start: scripts['dist:start']};fs.writeFileSync('./dist/package.json', JSON.stringify(p, null, ' '))\"",
"start": "npm run dist && npm run start:dist",
"start:dist": "cd dist && npm start",
"dist:start": "cd server && node index.js",
"lint": "eslint src/ --ext .ts",
"format": "eslint src/ --fix --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sergey Volkov <[email protected]>",
"license": "MIT",
"dependencies": {
"@devicefarmer/adbkit": "^2.11.3",
"node-pty": "^0.9.0",
"portfinder": "^1.0.28",
"tslib": "^1.9.3",
"ws": "^7.5.6"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/node": "^12.0.2",
"@types/node-forge": "^0.9.5",
"@types/webpack-node-externals": "^2.5.0",
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"buffer": "^5.2.1",
"css-loader": "^4.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-progress": "0.0.1",
"file-loader": "^6.0.0",
"h264-converter": "^0.1.2",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.2",
"mkdirp": "^0.5.1",
"prettier": "^2.0.5",
"recursive-copy": "^2.0.10",
"rimraf": "^3.0.0",
"svg-inline-loader": "^0.8.2",
"sylvester.js": "^0.1.1",
"tinyh264": "0.0.6",
"ts-loader": "^8.0.4",
"ts-node": "^9.1.1",
"typescript": "^3.4.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2",
"worker-loader": "^2.0.0",
"xterm": "^4.5.0",
"xterm-addon-attach": "^0.5.0",
"xterm-addon-fit": "^0.3.0"
}
}