-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.91 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
{
"name": "codex-taskboard",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22.5"
},
"bin": {
"taskctl": "./cli/taskctl.mjs"
},
"scripts": {
"codex": "node scripts/codex-injector.mjs --launch --watch --open",
"codex:inject": "node scripts/codex-injector.mjs --watch",
"codex:daemon": "node scripts/codex-injector.mjs --daemon --open",
"codex:refresh": "node scripts/codex-injector.mjs --refresh",
"dev": "node scripts/dev.mjs",
"dev:server": "node --watch server/index.mjs --dev",
"dev:web": "vite --config web/vite.config.ts",
"dev:cloud": "npm run build:web && wrangler dev --local",
"build": "vite build --config web/vite.config.ts && node scripts/codex-injector.mjs --refresh-if-running",
"build:web": "vite build --config web/vite.config.ts",
"typecheck": "tsc -p web/tsconfig.json --noEmit",
"start": "node server/index.mjs",
"taskctl": "node cli/taskctl.mjs",
"test": "node --test",
"test:cloud": "node --test test/cloud-shared-worker.test.mjs",
"cloud:migrate:local": "wrangler d1 migrations apply codex-taskboard-db --local",
"cloud:migrate": "wrangler d1 migrations apply codex-taskboard-db --remote",
"cloud:deploy:dry-run": "npm run build:web && wrangler deploy --dry-run",
"cloud:deploy": "npm run build:web && wrangler deploy",
"cloud:data": "node scripts/migrate-to-cloud.mjs",
"check": "npm run typecheck && npm run build && npm test"
},
"dependencies": {
"@lobehub/icons-static-svg": "^1.94.0",
"@xyflow/react": "^12.11.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"miniflare": "^4.20260722.0",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"wrangler": "^4.114.0"
}
}