-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.64 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.64 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "dmMiniPlayer",
"version": "0.6.60",
"license": "MIT",
"author": "apades",
"type": "module",
"private": true,
"engines": {
"pnpm": ">=10.0.0",
"node": ">=24.11.0"
},
"scripts": {
"predev": "pnpm auto-use-node",
"dev": "cross-env NODE_ENV=development nodemon --exec \"rm -rf dist && run-p dev:*\"",
"dev:esm": "tsup --config scripts/dev.tsup.esm.ts",
"dev:hmr": "vite --config scripts/dev.vite.hmr.ts",
"prebuild": "pnpm auto-use-node",
"build": "cross-env NODE_ENV=production run-s build:*",
"build:esm-chunks": "tsup --config scripts/prod.tsup.esm-chunks.ts --metafile && mv ./dist/metafile-esm.json ./dist/metafile-esm-chunks.json",
"build:iife": "tsup --config scripts/prod.tsup.iife.ts --metafile",
"build:clean": "rm ./dist/icon-* && mv dist/metafile-*.json ./",
"build:after-clean": "tsx scripts/afterClean.ts",
"playground": "run-s playground:*",
"playground:build-ext": "cross-env NODE_ENV=test run-s build:*",
"playground:start": "sh ./scripts/run-playground.sh",
"release": "node ./scripts/release.mjs",
"archive": "node ./scripts/archive.mjs",
"sizetest": "pnpm build && pnpm archive --size-test",
"translate": "tsx ./scripts/auto-translate.ts",
"eslint": "npx eslint",
"update-deps": "pnpm update --depth Infinity",
"auto-use-node": "sh ./scripts/nvm-auto-use.sh"
},
"devDependencies": {
"@apad/env-tools": "^1.0.6",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@chialab/esbuild-plugin-meta-url": "^0.18.2",
"@playwright/test": "^1.57.0",
"@preact/preset-vite": "^2.10.2",
"@types/chrome": "0.1.27",
"@types/color": "^4.2.0",
"@types/fs-extra": "^11.0.4",
"@types/less": "^3.0.8",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.0.0",
"@types/pako": "^2.0.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/webextension-polyfill": "0.9.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.1.0",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.22",
"babel-plugin-react-compiler": "^1.0.0",
"chalk": "^5.6.2",
"cross-env": "^10.1.0",
"enquirer": "^2.4.1",
"esbuild": "^0.25.12",
"eslint": "^9.39.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"fs-extra": "^11.3.2",
"globals": "^16.5.0",
"https-proxy-agent": "^7.0.6",
"less": "^4.4.2",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-load-config": "^6.0.1",
"prettier": "^3.6.2",
"protobufjs": "^7.5.4",
"tailwindcss": "^3.4.18",
"tailwindcss-rem-to-px": "^0.1.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"type-fest": "^5.2.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.2"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@apad/rc-slider": "^10.5.0",
"@apad/setting-panel": "^0.6.6",
"@rc-component/trigger": "^3.6.15",
"ahooks": "^3.9.6",
"ass-compiler": "^0.1.16",
"bilibili-live-ws": "^6.3.1",
"classnames": "^2.5.1",
"color": "^5.0.2",
"fast-deep-equal": "^3.1.3",
"mitt": "^3.0.1",
"mobx": "^6.15.0",
"mobx-react": "^9.2.1",
"node-html-parser": "^7.0.1",
"pako": "^2.1.0",
"preact": "^10.27.2",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-draggable": "^4.5.0",
"react-hot-toast": "^2.6.0",
"uuid": "^13.0.0",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.9.0",
"ws": "^8.18.3"
}
}