-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 779 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 779 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
28
29
30
{
"name": "iris-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.0.9",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"build": "pnpm -r run build",
"test": "vitest run",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "pnpm -r run typecheck",
"bench": "node --experimental-strip-types scripts/bench.ts",
"validation:commands": "node --experimental-strip-types scripts/user-directed-command-pack.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^20.16.5",
"typescript": "^5.6.3",
"tsup": "^8.3.5",
"vitest": "^2.1.5"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild"]
}
}