-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.35 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
{
"scripts": {
"clean": "pnpm -r clean",
"dev": "pnpm -C packages/app dev",
"build": "pnpm -C packages/app build",
"build:flac-picture": "pnpm -C packages/flac-picture build",
"build:ffmpeg": "pnpm -C packages/ffmpeg build",
"build:deps": "run-s build:flac-picture build:ffmpeg",
"build:all": "run-s build:deps build",
"release": "pnpm -C packages/app release",
"release-production": "pnpm -C packages/app release-production",
"tsc": "tsc -b packages/app packages/flac-picture packages/ffmpeg",
"test": "pnpm -r test",
"lint": "run-s lint:* && pnpm -r lint",
"lint-check": "run-s lint-check:* && pnpm -r lint-check",
"lint:prettier": "prettier -w --cache .",
"lint-check:prettier": "prettier -c --cache .",
"lint:isort": "isort-ts --git --cache --fix",
"lint-check:check": "isort-ts --git --cache"
},
"devDependencies": {
"@hiogawa/isort-ts": "1.0.2-pre.1",
"@hiogawa/utils": "1.4.2-pre.9",
"@tsconfig/strictest": "^2.0.1",
"esbuild": "^0.15.13",
"esbuild-register": "^3.3.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vitest": "^0.24.5"
},
"volta": {
"node": "18.16.1"
},
"pnpm": {
"patchedDependencies": {
"@opentelemetry/[email protected]": "patches/@[email protected]"
}
}
}