-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 908 Bytes
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": "noema",
"version": "0.0.5",
"license": "AGPL-3.0-only",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"pnpm": {
"onlyBuiltDependencies": [
"onnxruntime-node"
]
},
"scripts": {
"dev": "turbo run dev",
"desktop:dev": "cd apps/desktop && pnpm run dev",
"build": "turbo run build",
"desktop:install:mac": "cd apps/desktop && pnpm run install:mac:local",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"start": "cd apps/desktop && pnpm run start",
"history:clear": "bash ./scripts/clear-history.sh",
"check:runtime-naming": "node ./scripts/check-runtime-naming.mjs"
},
"devDependencies": {
"turbo": "^2.9.15",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.33.2"
}