-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 3.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "logic-loop",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"reinstall": "sh scripts/reinstall.sh",
"golden": "tsx scripts/golden.ts",
"check": "npm run landing:check && npm run epoch:check && npm run bind:check && npm run dedupe:check && npm run attention-state:check && npm run attention-inbox:check && npm run reentry:check && npm run unclaimed:check && npm run notify:check && npm run onboarding:check && npm run split-view:check && npm run lock-in:check && npm run spawn:check && npm run scope:check && npm run clock:check && npm run delta:check && npm run loop:check && npm run extractor-queue:check && npm run decisions:check && npm run blockers:check && npm run codex-transcript:check && npm run board:check && npm run empty-state:check && npm run opencode:check && npm run panel-layout:check && npm run diff:check",
"landing:check": "tsx scripts/landing-check.ts",
"epoch:check": "tsx scripts/epoch-check.ts",
"bind:check": "tsx scripts/bind-check.ts",
"dedupe:check": "tsx scripts/dedupe-check.ts",
"attention-state:check": "tsx scripts/attention-state-check.ts",
"attention-inbox:check": "tsx scripts/attention-inbox-check.ts",
"reentry:check": "tsx scripts/reentry-check.ts",
"unclaimed:check": "tsx scripts/unclaimed-check.ts",
"notify:check": "tsx scripts/notify-check.ts",
"onboarding:check": "tsx scripts/onboarding-check.ts",
"split-view:check": "tsx scripts/split-view-check.ts",
"lock-in:check": "tsx scripts/lock-in-check.ts",
"spawn:check": "tsx scripts/spawn-check.ts",
"scope:check": "tsx scripts/scope-check.ts",
"clock:check": "tsx scripts/clock-check.ts",
"delta:check": "tsx scripts/delta-check.ts",
"loop:check": "tsx scripts/loop-check.ts",
"extractor-queue:check": "tsx scripts/extractor-queue-check.ts",
"decisions:check": "tsx scripts/decisions-check.ts",
"blockers:check": "tsx scripts/blockers-check.ts",
"codex-transcript:check": "tsx scripts/codex-transcript-check.ts",
"board:check": "tsx scripts/board-check.ts",
"empty-state:check": "tsx scripts/empty-state-check.ts",
"opencode:check": "tsx scripts/opencode-check.ts",
"panel-layout:check": "tsx scripts/panel-layout-check.ts",
"diff:check": "tsx scripts/diff-check.ts"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-sql": "^2.4.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"tailwindcss": "^4.3.2",
"tsx": "^4.23.0",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}