-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "discofork",
"version": "0.1.0",
"description": "A local-first OpenTUI application for evaluating GitHub forks with gh, git, and Codex CLI.",
"type": "module",
"bin": {
"discofork": "./bin/discofork.mjs"
},
"files": [
"bin",
"schemas",
"src",
"README.md",
"LICENSE"
],
"module": "src/index.tsx",
"scripts": {
"dev": "bun run --watch src/index.tsx",
"start": "bun run src/index.tsx",
"worker": "bun run src/worker.ts",
"migrate": "bun run src/migrate.ts",
"deploy:stats-refresh-function": "./scripts/deploy-stats-refresh-function.sh",
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"check": "bun run typecheck && bun test"
},
"devDependencies": {
"@types/bun": "1.2.20",
"@types/pg": "^8.15.5"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"@opentui/core": "^0.1.91",
"@opentui/react": "^0.1.91",
"hono": "4.12.12",
"pg": "^8.16.3",
"react": "^19.2.0",
"redis": "^5.8.2",
"zod": "^3.24.2"
}
}