-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 912 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": "508-devkit",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.13",
"workspaces": [
"stacks/typescript"
],
"scripts": {
"dev": "./scripts/dev.sh",
"build": "bun run --cwd stacks/typescript build",
"lint": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "bun run --cwd stacks/typescript typecheck",
"test": "bun run --cwd stacks/typescript test",
"check": "./scripts/check-all.sh",
"ports": "./scripts/worktree-ports.sh env",
"db:generate": "bun run --cwd stacks/typescript db:generate",
"db:push": "bun run --cwd stacks/typescript db:push",
"db:studio": "bun run --cwd stacks/typescript db:studio"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@types/bun": "^1.3.4",
"typescript": "^5.9.3"
},
"trustedDependencies": []
}