forked from kazgu/zotero-chatgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.84 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
{
"name": "zotero-chatbot",
"version": "0.1.6",
"description": "ChatGPT in zotero",
"config": {
"addonName": "Zotero ChatGPT",
"addonID": "[email protected]",
"addonRef": "zoterochatbot",
"prefsPrefix": "extensions.zotero.zoterochatbot",
"addonInstance": "AddonTemplate",
"releasepage": "https://github.com/kazgu/zotero-chat/releases/latest/download/zotero-chatbot.xpi",
"updaterdf": "https://github.com/kazgu/zotero-chat/bootstrap/update.json"
},
"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/kazgu/zotero-chat.git"
},
"author": "kazgu",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/kazgu/zotero-chat/issues"
},
"homepage": "https://github.com/kazgu/zotero-chat#readme",
"dependencies": {
"zotero-plugin-toolkit": "^2.0.1"
},
"devDependencies": {
"@types/node": "^18.11.17",
"compressing": "^1.6.3",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"esbuild": "^0.17.4",
"minimist": "^1.2.7",
"release-it": "^15.6.0",
"replace-in-file": "^6.3.5",
"typescript": "^4.9.4",
"zotero-types": "^1.0.12"
}
}