-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 822 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 822 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
31
{
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@turbo/gen": "2.5.3",
"@types/node": "22.15.19",
"rimraf": "6.0.1",
"turbo": "2.5.3",
"typescript": "5.8.3",
"vitest": "3.1.4"
},
"engines": {
"node": ">=20.0.0"
},
"name": "@boundaryml/examples",
"packageManager": "pnpm@9.8.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules && rm -rf .turbo",
"clean:ws": "turbo run clean",
"dev": "pnpm with-env turbo run dev",
"format": "turbo run format && biome check",
"format:ci": "biome ci",
"format:fix": "biome check --write",
"generate": "turbo run generate",
"test": "pnpm with-env vitest",
"typecheck": "turbo run typecheck",
"with-env": "infisical run --"
},
"type": "module"
}