-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.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
{
"name": "zotagent",
"version": "2026.8.17",
"description": "Zotero literature search CLI for AI agents",
"type": "module",
"bin": {
"zotagent": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit",
"prepack": "npm run build",
"dev": "tsx src/cli.ts",
"test": "tsx --test tests/**/*.test.ts",
"check": "npm run lint && npm test"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"@opendataloader/pdf": "^2.4.0",
"@tobilu/qmd": "^2.1.0",
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^12.9.0",
"js-tiktoken": "^1.0.21",
"jszip": "^3.10.1",
"linkedom": "^0.18.12",
"opencc-js": "^1.3.1"
},
"devDependencies": {
"@types/node": "^25.2.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"allowScripts": {
"better-sqlite3@12.10.0": true,
"esbuild@0.28.1": true,
"fsevents@2.3.3": true,
"node-llama-cpp@3.18.1": true,
"tree-sitter-go@0.25.0": true,
"tree-sitter-javascript@0.23.1": true,
"tree-sitter-python@0.25.0": true,
"tree-sitter-rust@0.24.0": true,
"tree-sitter-typescript@0.23.2": true
}
}