-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 936 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 936 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
27
{
"private": true,
"workspaces": ["packages/*", "benchmarks"],
"author": "ualtinok",
"license": "MIT",
"scripts": {
"build": "bun run --filter '*' build",
"build:rust": "cargo build --release",
"build:all": "bun run --filter '*' build && cargo build --release",
"typecheck": "bun run --filter '*' typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write . && cargo fmt",
"format:check": "biome format . && cargo fmt --check",
"test": "bun run --filter '*' test",
"test:rust": "cargo test",
"test:windows-e2e": "bun run scripts/windows-vm/test.ts",
"windows-vm:setup": "bun run scripts/windows-vm/setup.ts",
"version-sync": "node scripts/version-sync.mjs",
"bench": "bun run benchmarks/src/runner.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"bun-types": "^1.3.13",
"typescript": "^5.8.0"
}
}