-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 4.19 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 4.19 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "hack-cli",
"version": "3.5.0",
"packageManager": "bun@1.3.9",
"module": "index.ts",
"type": "module",
"workspaces": [
"apps/*",
"services/*",
"packages/*"
],
"bin": {
"hack": "dist/hack"
},
"scripts": {
"dev": "bun run --cwd packages/cli dev",
"build": "bun run --cwd packages/cli build",
"build:runtime-image": "bun run --cwd packages/cli build:runtime-image",
"build:node-runtime-image": "bun run --cwd packages/cli build:node-runtime-image",
"build:slim-runtime-image": "bun run --cwd packages/cli build:slim-runtime-image",
"build:release": "bun run --cwd packages/cli build:release",
"smoke:portable-container": "bash scripts/portable-container-smoke.sh",
"commit": "cz",
"install:dev": "bun run --cwd packages/cli install:dev",
"install:bin": "bun run build && bun run --cwd packages/cli install:bin",
"install:codex": "bash scripts/install-codex-slim.sh",
"install:status": "bun run --cwd packages/cli install:status",
"maintain:codex": "bash scripts/maintain-codex-slim.sh",
"lint": "bun run check",
"macos:project-gen": "bun run --cwd packages/cli macos:project-gen",
"macos:open": "bun run --cwd packages/cli macos:open",
"macos:dev": "bun run --cwd packages/cli macos:dev",
"macos:build": "bun run --cwd packages/cli macos:build",
"macos:test": "bun run --cwd packages/cli macos:test",
"macos:release": "bun run --cwd packages/cli macos:release",
"macos:ghostty:setup": "bun run --cwd packages/cli macos:ghostty:setup",
"macos:ghostty:bundle": "bun run --cwd packages/cli macos:ghostty:bundle",
"db:test": "bun run --cwd packages/db test",
"db:typecheck": "bun run --cwd packages/db typecheck",
"db:check": "bun run --cwd packages/db check",
"db:generate": "bun run --cwd packages/db db:generate",
"db:migrate": "bun run --cwd packages/db db:migrate",
"db:push": "bun run --cwd packages/db db:push",
"db:studio": "bun run --cwd packages/db db:studio",
"privacy:check": "bun run scripts/privacy-check.ts",
"neon:me": "bunx neonctl me --output json",
"neon:projects": "bunx neonctl projects list --output json",
"neon:connection-string": "bunx neonctl connection-string --project-id \"$NEON_PROJECT_ID\" --output json",
"turbo": "bunx turbo",
"turbo:dev": "bunx turbo run dev --parallel",
"turbo:typecheck": "bunx turbo run typecheck",
"turbo:test": "bunx turbo run test",
"turbo:check": "bunx turbo run check",
"check": "bun run privacy:check && bun run turbo:check",
"prepare": "husky",
"release:prepare": "bunx semantic-release --no-ci",
"typecheck": "bun run turbo:typecheck",
"uninstall:local": "bun run --cwd packages/cli uninstall:local",
"test": "bun run turbo:test",
"test:e2e:local": "bun tests/e2e/run.ts",
"test:e2e:local:docker": "HACK_E2E_DOCKER=1 bun tests/e2e/run.ts",
"test:e2e:gateway": "bun run scripts/gateway-e2e.ts",
"test:e2e:dispatch": "bun run scripts/dispatch-e2e.ts",
"test:e2e:railway": "bun run scripts/railway-node-e2e.ts",
"docs:cli-reference": "bun run scripts/generate-cli-reference.ts"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/bun": "latest",
"@types/qrcode": "^1.5.6",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "^9.1.7",
"prettier": "3.7.4",
"prettier-plugin-sort-imports": "^1.8.9",
"semantic-release": "25.0.2",
"turbo": "^2.5.8",
"ultracite": "7.0.12"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@charmland/lipgloss": "2.0.0-beta.3-0e280f3",
"@clack/prompts": "1.0.0-alpha.9",
"elysia": "^1.4.9",
"@modelcontextprotocol/sdk": "1.26.0",
"@opentui/core": "^0.1.74",
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0",
"zod": "4.3.5"
}
}