-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 908 Bytes
/
package.json
File metadata and controls
26 lines (26 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
{
"name": "threshold-monorepo",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"test": "pnpm -r test",
"tauri": "pnpm --filter threshold tauri",
"version:release": "pnpm --filter @threshold/release-tui dev",
"build:release": "bash scripts/build-release-devcontainer.sh",
"prebuild:desktop": "pnpm -C packages/core build",
"prebuild:android": "pnpm -C packages/core build",
"build:desktop": "pnpm --filter threshold tauri build",
"build:android": "pnpm --filter threshold tauri android build",
"build:wear": "bash scripts/build-wear.sh",
"dev:desktop": "pnpm --filter threshold tauri dev",
"dev:android": "pnpm --filter threshold tauri android dev",
"format": "prettier --write .",
"lint:mermaid": "bash scripts/lint-mermaid.sh"
},
"packageManager": "pnpm@10.28.0",
"devDependencies": {
"@probelabs/maid": "^0.0.23",
"prettier": "^3.8.0"
}
}