-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 899 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": "reins",
"private": true,
"type": "module",
"packageManager": "pnpm@11.9.0",
"engines": {
"node": "24.18.0",
"pnpm": "11.9.0"
},
"scripts": {
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"build": "turbo run build",
"dev": "turbo run dev",
"daemon": "turbo run build --filter=@karnstack/reins --output-logs=errors-only && node packages/cli/dist/cli.js daemon",
"reins": "turbo run build --filter=@karnstack/reins --output-logs=errors-only && node packages/cli/dist/cli.js",
"zip": "turbo run zip",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@changesets/cli": "2.31.0",
"turbo": "2.10.0",
"typescript": "6.0.3"
}
}