-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "rivet-monorepo",
"private": true,
"packageManager": "pnpm@11.0.0",
"engines": {
"node": ">= 18.17.0 < 19 || >= 20.3.0 < 21 || >= 21.1.0"
},
"scripts": {
"artifacts": "pnpm --filter @bdbchgg/rivet artifacts",
"bench": "pnpm --filter @bdbchgg/rivet bench",
"build": "pnpm --filter @bdbchgg/rivet build",
"build:cli": "cargo build --release --bin rivet",
"build:debug": "pnpm --filter @bdbchgg/rivet build:debug",
"format": "run-p format:prettier format:rs format:toml",
"format:prettier": "vp fmt .",
"format:rs": "cargo fmt",
"format:toml": "taplo format",
"docs:dev": "vp run docs#dev",
"docs:build": "vp run docs#build",
"docs:start": "vp run docs#start",
"lint": "vp lint .",
"prepare": "vp config",
"test": "pnpm --filter @bdbchgg/rivet test"
},
"devDependencies": {
"@taplo/cli": "^0.7.0",
"npm-run-all2": "^8.0.4",
"typescript": "^6.0.0",
"vite-plus": "latest"
},
"resolutions": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
}