-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "zync",
"private": true,
"version": "0.0.1",
"packageManager": "pnpm@10.29.2",
"engines": {
"node": ">=24",
"pnpm": ">=10.29"
},
"type": "module",
"scripts": {
"dev": "turbo dev",
"dev:all": "concurrently -n app,server,whisper,wakeword -c blue,green,yellow,magenta \"turbo dev --filter=@zync/app\" \"turbo dev --filter=@zync/server\" \"cd packages/whisper && pip3 install -q -r requirements.txt && python3 server.py\" \"cd packages/wakeword && pip3 install -q -r requirements.txt && python3 server.py\"",
"build": "turbo build",
"typecheck": "turbo typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"concurrently": "^9.1.0",
"turbo": "^2.5.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"sharp"
],
"ignoredBuiltDependencies": [
"baileys",
"protobufjs"
]
}
}