-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 921 Bytes
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
{
"name": "paperrouter",
"version": "0.2.1",
"description": "Zotero plugin that suggests collections for your papers via LLM or embedding similarity.",
"homepage": "https://github.com/KESHEN-ZHOU/PaperRouter",
"repository": {
"type": "git",
"url": "git+https://github.com/KESHEN-ZHOU/PaperRouter.git"
},
"bugs": {
"url": "https://github.com/KESHEN-ZHOU/PaperRouter/issues"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"test:verbose": "jest --verbose",
"build": "./scripts/build-xpi.sh"
},
"keywords": [
"zotero",
"zotero-plugin",
"classification",
"embedding",
"llm"
],
"license": "MPL-2.0",
"devDependencies": {
"jest": "^29.7.0",
"@types/jest": "^29.5.11"
},
"engines": {
"node": ">=18.0.0"
},
"private": true
}