-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.35 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.35 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
36
{
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@clack/prompts": "1.2.0",
"@types/bun": "1.3.13",
"lefthook": "2.1.6",
"typescript": "6.0.3"
},
"license": "Apache-2.0",
"name": "r5n-clis",
"packageManager": "bun@1.3.3",
"private": true,
"scripts": {
"build": "bun --filter '*' build",
"clean": "bun --filter '*' clean; rm -rf node_modules; bun install",
"deps": "bun update -r -i --latest",
"lint": "bun biome check --write --unsafe",
"old-sisyphus:local": "bun --bun packages/old-sisyphus/src/cli.ts",
"package:dryRun": "bun --filter '*' package:dryRun",
"package:prepare": "bun --filter '*' package:prepare",
"package:release": "bun --filter '*' package:release",
"release:check": "bun sis check",
"release:roll": "bun sis roll",
"release:version": "bun sis version",
"sis": "bun --bun packages/sisyphus/src/cli.ts",
"sis:dbg": "bun --inspect-brk packages/sisyphus/src/cli.ts",
"hydra": "bun --bun packages/hydra/src/cli.ts",
"hydra:dbg": "bun --inspect-brk packages/hydra/src/cli.ts",
"test": "bun test",
"type-check": "bun --elide-lines=0 --filter '*' type-check",
"type-check:ci": "bun --filter '*' type-check",
"type-check:go": "bun --elide-lines=0 --filter '*' type-check:go"
},
"version": "0.0.0",
"workspaces": { "packages": ["packages/*", "tools"] }
}