-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "rx-paired",
"version": "0.1.11",
"description": " A very lightweight, RxPlayer-specialized, remote inspector ",
"type": "module",
"main": "./rx-paired.mjs",
"bin": {
"rx-paired": "./rx-paired.mjs"
},
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier . --check",
"prepublishOnly": "cd server && npm run build",
"start": "cd server && npm run build && cd .. && node rx-paired.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build --workspaces",
"lint": "npm run lint --workspaces",
"serve": "node ./utils/static_http_server.mjs --port 8695 --include-client-file --include-inspector-files & npm run serve --workspace=server -- --no-password"
},
"repository": {
"type": "git",
"url": "git://github.com/canalplus/RxPaired.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/canalplus/RxPaired/issues"
},
"homepage": "https://github.com/canalplus/RxPaired#readme",
"dependencies": {
"esbuild": "^0.23.1",
"http-server": "^14.1.1",
"str-html": "^0.2.1",
"ws": "^8.18.0"
},
"devDependencies": {
"prettier": "3.3.3",
"typescript": "^5.5.4"
},
"workspaces": [
"inspector",
"client",
"server"
]
}