forked from bilive/bilive_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.18 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
{
"name": "bilive_client",
"version": "1.3.11",
"description": "基于Node.JS的bilibili直播挂机系统",
"main": "index.js",
"scripts": {
"build": "npm run build:client && npm run build:view",
"build:client": "tsc --locale zh-cn -p ./tsconfig.json && npm-run-posix-or-windows copy:client",
"build:view": "tsc --locale zh-cn -p ./docs/tsconfig.json && npm-run-posix-or-windows copy:view",
"copy:client": "cp ./bilive/options.default.json ./build/bilive/",
"copy:client:windows": "xcopy .\\bilive\\options.default.json .\\build\\bilive\\ /Y",
"copy:view": "cp -r ./docs/view/ ./docs/index.html ./build/",
"copy:view:windows": "xcopy .\\docs\\view\\* .\\build\\view\\ /Y && xcopy .\\docs\\index.html .\\build\\ /Y",
"clean": "rimraf build",
"start": "node ./build/app.js"
},
"author": "lzghzr",
"license": "MIT",
"devDependencies": {
"@types/bootstrap": "^4.1.0",
"@types/jquery": "^3.3.2",
"@types/node": "^9.6.20",
"@types/request": "^2.47.0",
"@types/ws": "^4.0.2",
"npm-run-posix-or-windows": "^2.0.2",
"rimraf": "^2.6.2",
"typescript": "^2.9.1"
},
"dependencies": {
"request": "^2.87.0",
"ws": "^5.2.0"
}
}