-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.51 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
{
"name": "live-auto-record",
"private": true,
"type": "module",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"app:dev": "turbo run build --filter=@autorecord/electron^... && concurrently \"pnpm -F @autorecord/http-server watch\" \"pnpm -F @autorecord/electron dev\"",
"app:build": "turbo run build --filter=@autorecord/electron^... && pnpm -F @autorecord/electron app:build",
"dev:server": "turbo run build --filter=@autorecord/http-server^... && pnpm -F @autorecord/http-server start:dev",
"dev:web": "pnpm -F @autorecord/web dev",
"dev:cli": "turbo run build --filter=@autorecord/cli^... && pnpm -F @autorecord/cli build",
"clean": "rimraf --glob '**/node_modules' '**/lib' '**/dist' '**/.turbo'",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"concurrently": "^9.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "catalog:",
"rimraf": "^6.0.0",
"turbo": "^2.8.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue,json,css,scss,md,yaml,yml}": "prettier --write"
},
"pnpm": {
"overrides": {
"mitt": "3.0.1"
},
"onlyBuiltDependencies": [
"electron",
"esbuild",
"ffmpeg-static",
"protobufjs"
]
}
}