-
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.2 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.2 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"runtimes/*",
"plugins/*",
"themes/*",
"documentation",
"benchmarks"
],
"scripts": {
"doc": "cargo doc --no-deps --all-features",
"test": "cargo test --release",
"bench": "tsx benchmarks/src/benchmark.ts",
"fmt": "npx @biomejs/biome format --write . && cargo fmt",
"lint": "biome lint .",
"dev": "pnpm -F @vutex/documentation dev",
"build": "pnpm -F @vutex/documentation build",
"preview": "pnpm -F @vutex/documentation preview",
"dev:home": "pnpm -F @nyar/python-homepage dev",
"build:home": "pnpm -F @nyar/python-homepage build",
"build:release": "tsx scripts/build-release.ts",
"u": "cargo upgrade --workspace",
"p": "cargo workspace publish --resume",
"check:ci": "node scripts/check.mjs",
"check": "node scripts/check.mjs",
"typecheck:frontend": "pnpm -r exec tsc --noEmit",
"build:frontend": "pnpm -r run build"
},
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"tsx": "^4.21.0"
},
"packageManager": "pnpm@10.18.3"
}