-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.86 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
{
"name": "@biliLive-tools/root",
"version": "1.7.0",
"description": "B站直播录制处理工具",
"author": "renmu123",
"license": "GPL-3.0-only",
"homepage": "https://github.com/renmu123/biliLive-tools",
"type": "module",
"scripts": {
"dev": "chcp 65001 && pnpm run --filter biliLive-tools dev",
"devMain": "chcp 65001 && pnpm run --filter biliLive-tools devMain",
"build:app": "pnpm run build:base && pnpm run --filter biliLive-tools build:app",
"build:webui": "pnpm run build:base && pnpm run --filter biliLive-tools build:webui",
"build:app:no-ffmpeg": "pnpm run build:base && pnpm run --filter biliLive-tools build:app:no-ffmpeg",
"build:cli": "pnpm run build:base && pnpm run --filter bililive-cli build:cli",
"build:base": "pnpm run --filter @biliLive-tools/shared build && pnpm --filter @biliLive-tools/http --filter @autorecord/* --parallel run build",
"preinstall": "npx only-allow pnpm",
"install:bin": "node ./scripts/install-bin.js",
"github-ci-pnpm-update": "node ./scripts/github-ci-pnpm-update.js",
"test": "vitest run"
},
"dependencies": {
"axios": "^1.7.8",
"fs-extra": "^11.2.0",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21",
"uuid": "^10.0.0"
},
"devDependencies": {
"@kineticcafe/rollup-plugin-delete": "3.0.1",
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "20.17.6",
"@types/uuid": "^10.0.0",
"@vitest/coverage-istanbul": "^2.1.8",
"cli-progress": "^3.12.0",
"download": "^8.0.0",
"prettier": "^3.4.1",
"rollup": "^4.24.4",
"tar": "^7.4.3",
"typescript": "5.6.3",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"trash": "patches/trash.patch"
}
}
}