-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
86 lines (86 loc) · 2.69 KB
/
package.json
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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "papersgpt",
"version": "0.0.8",
"description": "Chat PDF in Zotero with ChatGPT, Gemini, Claude, DeepSeek, Phi-4, Llama 3.2, QwQ-32B-Preview, Gemma, Mistral",
"config": {
"addonName": "PapersGPT",
"addonID": "papersgpt@papersgpt.com",
"addonRef": "PapersGPT",
"addonInstance": "PapersGPT",
"releasepage": "",
"updaterdf": ""
},
"main": "src/index.ts",
"scripts": {
"build-dev": "cross-env NODE_ENV=development node scripts/build.js",
"build-prod": "cross-env NODE_ENV=production node scripts/build.js",
"build": "concurrently -c auto npm:build-prod npm:tsc",
"tsc": "tsc --noEmit",
"start-z6": "node scripts/start.js --z 6",
"start-z7": "node scripts/start.js --z 7",
"start": "node scripts/start.js",
"stop": "node scripts/stop.js",
"restart-dev": "npm run build-dev && npm run stop && npm run start",
"restart-prod": "npm run build-prod && npm run stop && npm run start",
"restart": "npm run restart-dev",
"release": "release-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/papersgpt/papersgpt-for-zotero.git"
},
"author": "Vincent",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/papersgpt/papersgpt-for-zotero/issues"
},
"homepage": "",
"dependencies": {
"@dqbd/tiktoken": "^1.0.6",
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@pinecone-database/pinecone": "^0.0.14",
"ansi-styles": "^6.2.1",
"blueimp-md5": "^2.19.0",
"chromadb": "^1.3.1",
"compute-cosine-similarity": "^1.0.0",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"gpt-3-encoder": "^1.1.4",
"highlight": "^0.2.4",
"highlight.js": "^11.7.0",
"htmldiff-js": "^1.0.5",
"langchain": "^0.0.66",
"lighten-darken-color": "^1.0.0",
"markdown-it": "^13.0.1",
"markdown-it-mathjax3": "^4.3.2",
"node-fetch": "^3.3.2",
"pdf-parse": "^1.1.1",
"pdfreader": "^3.0.0",
"proxy-agent": "^5.0.0",
"react-markdown": "^8.0.6",
"showdown": "^2.1.0",
"terser": "^5.17.1",
"zotero-adv-installer": "file:..",
"zotero-plugin-toolkit": "4.0.11"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.11.17",
"compressing": "^1.6.3",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"esbuild": "^0.17.4",
"esbuild-plugin-wasm": "^1.0.0",
"minimist": "^1.2.7",
"punycode": "^2.3.0",
"release-it": "^17.7.0",
"replace-in-file": "^6.3.5",
"typescript": "^5.6.2",
"uglify-js": "^3.17.4",
"zotero-types": "^2.2.0"
}
}