-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3.98 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 3.98 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
{
"name": "copicu",
"private": true,
"version": "0.4.7",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 1420",
"dev:isolated": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/isolated-dev.ps1",
"dev:restart": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/restart-dev.ps1",
"dev:restart:watcher": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/restart-dev.ps1 -EnableClipboardWatcher",
"dev:built": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/isolated-dev.ps1 -Built",
"dev:built:fresh": "npm run build && npm run dev:built",
"install:current": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/install-current.ps1",
"release:windows": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/release-windows.ps1",
"build": "tsc && vite build",
"preview": "vite preview",
"visual:check": "playwright test",
"perf:history": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/run-history-bench.ps1",
"perf:windows": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/measure-window-lifecycle.ps1",
"context:index": "bun scripts/context-index.ts",
"context:audit": "bun scripts/agent-context-audit.ts",
"routing:check": "bun scripts/check-tool-routing.ts",
"rust:test": "powershell -NoProfile -ExecutionPolicy Bypass -File tests/manual/run-rust-tests.ps1",
"capabilities:drift:test": "node --test tests/script-capabilities-drift.test.mjs",
"scripts:examples:test": "node --test tests/script-clean-url-helper.test.mjs tests/script-format-json-helper.test.mjs tests/script-extract-urls-helper.test.mjs tests/script-join-markdown-helper.test.mjs",
"ai:planner:test": "node --test tests/ai-query-planner.test.mjs",
"image:sources": "powershell.exe -NoProfile -ExecutionPolicy Bypass -STA -File tests/manual/validate-image-sources.ps1",
"dogfood:battery": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/run-dogfood-battery.ps1",
"dogfood:api": "node --test tests/manual/dogfood/api-surface-coverage.test.mjs && node tests/manual/dogfood/run-script-api-battery.mjs",
"scripts:run-example": "node scripts/run-example-action.mjs",
"tauri": "tauri",
"tauri:dev": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/isolated-dev.ps1",
"tauri:dev:watcher": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev/isolated-dev.ps1 -EnableClipboardWatcher",
"tauri:build": "tauri build",
"context:refresh": "bun run context:index && bun run context:audit",
"skills:status": "powershell -ExecutionPolicy Bypass -File scripts/toggle-skills-link.ps1 status",
"skills:on": "powershell -ExecutionPolicy Bypass -File scripts/toggle-skills-link.ps1 on",
"skills:off": "powershell -ExecutionPolicy Bypass -File scripts/toggle-skills-link.ps1 off",
"skills:toggle": "powershell -ExecutionPolicy Bypass -File scripts/toggle-skills-link.ps1 toggle",
"check": "bun run context:audit && bun run skills:status",
"check:ci": "bun scripts/agent-context-audit.ts"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.48",
"@mantine/core": "^9.3.0",
"@mantine/hooks": "^9.3.0",
"@tanstack/react-virtual": "^3.14.2",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.3.3",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@uiw/react-codemirror": "^4.25.11",
"ai": "^6.0.197",
"lucide-react": "^1.17.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tauri-apps/cli": "^2.11.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"typescript": "^6.0.3",
"vite": "^8.0.16"
}
}