-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.1 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.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
{
"name": "@liminal-hq/spindle-workspace",
"private": true,
"version": "0.3.0",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": "24.14.0",
"pnpm": "10.32.1"
},
"scripts": {
"build": "pnpm --filter @liminal-hq/spindle build",
"ci:all": "pnpm validate",
"dev": "pnpm --filter @liminal-hq/spindle dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release:version:check": "./scripts/check-release-versions.sh",
"release:version:prepare": "./scripts/prepare-release-version.sh",
"tauri": "pnpm --filter @liminal-hq/spindle tauri",
"test:js": "pnpm --filter @liminal-hq/spindle test",
"test:js:ci": "pnpm --filter @liminal-hq/spindle test:ci",
"test:rust": "cargo nextest run --workspace --locked",
"test:rust:ci": "mkdir -p test-results/rust && cargo nextest run --workspace --locked --config-file nextest.toml --profile ci",
"validate": "pnpm format:check && pnpm test:js:ci && pnpm build && cargo fmt --all -- --check && cargo clippy --workspace --all-targets --locked -- -D warnings && pnpm test:rust:ci"
},
"devDependencies": {
"prettier": "^3.8.1"
}
}