-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.44 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
{
"name": "bilibili-local-player-h5",
"version": "2.1.0",
"description": "bilibili-local-player-h5",
"main": "index.js",
"type": "module",
"scripts": {
"dev:html": "cross-env NODE_ENV=development node scripts/build-html.cjs",
"dev:script": "cross-env NODE_ENV=development rollup -c --bundleConfigAsCjs",
"dev:style": "cross-env NODE_ENV=development sass src/style/main.scss:public/player.css",
"prod:html": "cross-env NODE_ENV=production node scripts/build-html.cjs",
"prod:script": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs",
"prod:style": "cross-env NODE_ENV=production sass --style=compressed --no-source-map src/style/main.scss:build/assets/player.min.css",
"watch:html": "onchange -i \"src/html/*\" -- pnpm run dev:html",
"watch:script": "rollup -c rollup.config.js --bundleConfigAsCjs --watch",
"watch:style": "sass --watch src/style/main.scss:public/player.css",
"build:dev": "pnpm run dev:html && pnpm run dev:script && pnpm run dev:style",
"watch": "pnpm run --parallel \"/^watch:.*/\"",
"build": "pnpm run prod:html && pnpm run prod:style && pnpm run prod:script"
},
"keywords": [],
"homepage": "https://hi.auioc.org/BilibiliLocalPlayerH5/",
"author": {
"name": "PCC-Studio",
"url": "https://www.pccstudio.com"
},
"contributors": [
{
"name": "LainIO24",
"email": "[email protected]",
"url": "https://github.com/lainio24"
},
{
"name": "WakelessSloth56",
"url": "https://github.com/WakelessSloth56"
},
{
"name": "AUIOC",
"url": "https://www.auioc.org"
}
],
"license": "AGPL-3.0-or-later",
"dependencies": {
"assjs": "^0.0.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-legacy": "^3.0.2",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.10",
"cross-env": "^7.0.3",
"html-minifier-terser": "^7.2.0",
"node-html-parser": "^6.1.13",
"onchange": "^7.1.0",
"rollup": "^4.18.1",
"rollup-plugin-license": "^3.5.2",
"sass": "^1.77.8",
"terser": "^5.31.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
}
}