-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.07 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
73
74
{
"name": "seerai",
"type": "module",
"version": "1.9.4",
"description": "seerai - Intelligent Research Assistant for Zotero",
"config": {
"addonName": "seerai",
"addonID": "seerai@zotero.org",
"addonRef": "seerai",
"addonInstance": "SeerAI",
"prefsPrefix": "extensions.zotero.seerai"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dralkh/seerai.git"
},
"author": "dralkh",
"bugs": {
"url": "https://github.com/dralkh/seerai/issues"
},
"homepage": "https://github.com/dralkh/seerai",
"license": "MIT",
"scripts": {
"start": "zotero-plugin serve",
"build": "cd mcp-server && npm run bundle && cp dist/seerai-mcp.cjs .. && cd .. && zotero-plugin build && tsc --noEmit && cp .scaffold/build/*.xpi . && cp mcp-server/dist/seerai-mcp.cjs .scaffold/build/",
"lint:check": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"release": "zotero-plugin release",
"test": "zotero-plugin test",
"test:extraction-eval": "tsx test/extractionModelEval.ts",
"test:pipeline-eval": "tsx test/pipelineEval.ts",
"update-deps": "npm update --save"
},
"dependencies": {
"@types/turndown": "^5.0.6",
"docx-preview": "^0.3.7",
"gpt-tokenizer": "^3.4.0",
"katex": "^0.17.0",
"mammoth": "^1.12.0",
"turndown": "^7.2.4",
"zod": "^4.3.2",
"zotero-plugin-toolkit": "^5.1.0-beta.13"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/katex": "^0.16.8",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.0",
"@zotero-plugin/eslint-config": "^0.6.7",
"chai": "^6.2.1",
"eslint": "^9.39.1",
"mocha": "^11.7.5",
"prettier": "^3.6.2",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"zotero-plugin-scaffold": "^0.8.1",
"zotero-types": "^4.1.0-beta.8"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}