-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.22 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
{
"name": "vellum",
"version": "0.1.0",
"description": "Vellum — local-first AI paper workspace that runs on your own Claude/Codex plan via ACP. No extra API key.",
"author": "Kritarth Dandapat",
"license": "MIT",
"main": "out/main/index.cjs",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"start": "electron-vite preview",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"smoke:acp": "tsx core/acp/smoke.ts",
"test:gate:reading": "node test/reading-gate.mjs",
"test:gate:collections": "node test/collections-live.mjs",
"test:gate:chats": "node test/chats-live.mjs",
"test:gate:questions": "node test/questions-live.mjs",
"test:gate:trash": "node test/trash-live.mjs",
"test:gate:usage": "node test/usage-live.mjs",
"dist": "electron-vite build && electron-builder"
},
"dependencies": {
"@agentclientprotocol/sdk": "1.2.1",
"better-sqlite3": "12.11.1",
"pdfjs-dist": "^6.1.200",
"unpdf": "^1.6.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"electron": "^32.0.0",
"electron-builder": "^25.0.0",
"electron-vite": "^2.3.0",
"jsdom": "^25.0.1",
"playwright": "^1.63.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tsx": "^4.23.1",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vitest": "^2.1.0"
},
"//": "@agentclientprotocol/sdk is the current canonical ACP TS lib (verified on npm 2026-07-21). @zed-industries/agent-client-protocol is deprecated and renamed to this package. better-sqlite3 bumped 11->13: v11's prebuilt/native build doesn't compile against newer V8 (Node 26) — v13 fixes the V8 API compat, no behavior change for our usage.",
"allowScripts": {
"better-sqlite3@12.11.1": true,
"better-sqlite3@13.0.1": true,
"electron@32.3.3": true,
"esbuild@0.21.5": true,
"esbuild@0.28.1": true,
"fsevents@2.3.3": true
}
}