forked from Vector000/bilive_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.64 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
{
"name": "bilive_client",
"version": "2.2.6",
"description": "基于Node.JS的bilibili直播挂机系统",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build:client && npm run build:view",
"build:client": "tsc -p tsconfig.json && npm-run-posix-or-windows copy:client",
"build:view": "webpack --config docs/webpack.conf.js && npm-run-posix-or-windows copy:view",
"copy:client": "cp bilive/options.default.json build/",
"copy:client:windows": "xcopy bilive\\options.default.json build\\ /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 && mkdir build && rimraf logs && mkdir logs",
"start": "node build/app.js",
"dev": "npm run build && npm run start"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"homepage": "https://github.com/Vector000/bilive_client#readme",
"repository": {
"type": "git",
"url": "https://github.com/Vector000/bilive_client.git"
},
"author": "Vector000",
"license": "MIT",
"devDependencies": {
"@types/bootstrap": "^4.3.1",
"@types/jquery": "^3.3.31",
"@types/node": "^12.12.12",
"@types/request": "^2.48.3",
"@types/ws": "^6.0.3",
"cz-conventional-changelog": "^3.0.2",
"ts-loader": "^6.2.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"buffer": "^5.4.3",
"npm-run-posix-or-windows": "^2.0.2",
"request": "^2.88.0",
"rimraf": "^3.0.0",
"typescript": "^3.7.2",
"ws": "^7.2.0"
}
}