-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.59 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
{
"name": "codex-switch",
"private": true,
"version": "0.2.11",
"license": "Apache-2.0",
"packageManager": "npm@10.8.2",
"workspaces": [
"apps/*"
],
"scripts": {
"dev": "npm run dev -w @codex-switch/desktop",
"dev:desktop": "npm run dev -w @codex-switch/desktop",
"dev:app": "npm run dev:app -w @codex-switch/desktop",
"dev:admin": "npm run dev -w @codex-switch/admin-ui",
"dev:backend": "npm run dev -w @codex-switch/backend",
"build": "lerna run build --stream",
"build:desktop": "npm run build -w @codex-switch/desktop",
"build:admin": "npm run build -w @codex-switch/admin-ui",
"build:backend": "npm run build -w @codex-switch/backend",
"build:app": "npm run build:app -w @codex-switch/desktop",
"build:app:mac": "npm run build:app:mac -w @codex-switch/desktop",
"build:app:win-arm64": "npm run build:app:win-arm64 -w @codex-switch/desktop",
"check": "lerna run check --stream && npm run check:rust",
"check:rust": "npm run check:rust -w @codex-switch/desktop",
"test": "lerna run test --stream --if-present",
"preview": "npm run preview -w @codex-switch/desktop",
"tauri": "npm run tauri -w @codex-switch/desktop",
"commitlint": "commitlint",
"prepare": "husky",
"nx": "nx",
"graph": "nx graph",
"affected": "nx affected",
"release": "node scripts/tag-release.mjs",
"release-beta": "node scripts/tag-release.mjs --beta"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"husky": "^9.1.7",
"lerna": "^9.0.7",
"nx": "^23.0.1"
}
}