-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
98 lines (98 loc) · 3.1 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
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
{
"name": "dmMiniPlayer",
"version": "0.6.33",
"license": "MIT",
"author": "apades",
"engines": {
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "nodemon --exec \"run-p dev:*\"",
"dev:bg": "tsup --config scripts/tsup.dev.bg.ts",
"dev:cs": "vite --config scripts/vite.dev.ts",
"build": "run-s build:*",
"build:main": "cross-env NODE_ENV=production tsup --config scripts/tsup.build.ts --metafile && mv ./dist/metafile-esm.json ./dist/metafile-main.json",
"build:iife": "cross-env NODE_ENV=production tsup --config scripts/tsup.build.iife.ts --metafile",
"build:clean": "rm ./dist/icon-* && mv dist/metafile-*.json ./",
"build:after-clean": "tsx scripts/afterClean.ts",
"test": "sh ./scripts/run-test.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"
},
"devDependencies": {
"@apad/env-tools": "^1.0.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@chialab/esbuild-plugin-meta-url": "^0.18.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^5.16.14",
"@types/chrome": "0.0.268",
"@types/color": "^3.0.6",
"@types/fs-extra": "^11.0.4",
"@types/less": "^3.0.8",
"@types/lodash-es": "^4.17.12",
"@types/node": "18.15.11",
"@types/pako": "^2.0.3",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/uuid": "^9.0.8",
"@types/webextension-polyfill": "0.9.0",
"@vitejs/plugin-react": "^4.3.4",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.21",
"chalk": "^5.4.1",
"cross-env": "^7.0.3",
"enquirer": "^2.4.1",
"esbuild": "^0.25.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"fs-extra": "^11.3.0",
"globals": "^16.0.0",
"https-proxy-agent": "^7.0.6",
"less": "^4.2.2",
"lodash-es": "^4.17.21",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.3",
"postcss-load-config": "^6.0.1",
"prettier": "^3.5.3",
"protobufjs": "^7.4.0",
"tailwindcss": "^3.4.17",
"tailwindcss-rem-to-px": "^0.1.1",
"tsup": "^8.1.2",
"tsx": "^4.19.3",
"type-fest": "^4.37.0",
"typescript": "5.1.6",
"typescript-eslint": "^8.26.1",
"vite": "^6.2.1"
},
"dependencies": {
"@ant-design/icons": "^4.8.3",
"@apad/rc-slider": "^10.5.0",
"@apad/setting-panel": "0.6.2",
"ahooks": "^3.8.4",
"ass-compiler": "^0.1.15",
"bilibili-live-ws": "^6.3.1",
"classnames": "^2.5.1",
"color": "^4.2.3",
"fast-deep-equal": "^3.1.3",
"mitt": "^3.0.1",
"mobx": "^6.13.6",
"mobx-react": "^7.6.0",
"node-html-parser": "^6.1.13",
"pako": "^2.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.6",
"uuid": "^9.0.1",
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.9.0"
}
}