-
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.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 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": "tomoe",
"version": "0.0.0",
"private": true,
"description": "Tomoe — The art of perfect balance",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:bun": "pnpm --filter tomoejs build && bun run scripts/bun-smoke.ts",
"test:soak": "pnpm --filter tomoejs build && tsx scripts/soak.ts",
"test:watch": "turbo run test:watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"type-check": "turbo run type-check",
"bench": "pnpm --filter benchmarks run start",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run build && changeset publish"
},
"packageManager": "pnpm@10.6.5",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.9",
"tsx": "^4.19.2",
"turbo": "^2.5.8",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
}
}