forked from redleafnew/delitemwithatt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.08 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
{
"name": "delitemwithatt",
"version": "0.3.2",
"description": "Delete item(s) with attachment(s)",
"config": {
"addonName": "Del Item With Attachment",
"addonID": "[email protected]",
"addonRef": "delitemwithatt",
"addonInstance": "delitemwithatt",
"prefsPrefix": "extensions.zotero.delitemwithatt",
"releasepage": "https://github.com/redleafnew/delitemwithatt/releases/latest/download/delitemwithatt.xpi",
"updaterdf": "https://raw.githubusercontent.com/redleafnew/delitemwithatt/main/update.json"
},
"main": "src/index.ts",
"scripts": {
"build-dev": "cross-env NODE_ENV=development node scripts/build.mjs",
"build-prod": "cross-env NODE_ENV=production node scripts/build.mjs",
"build": "concurrently -c auto npm:build-prod npm:tsc",
"tsc": "tsc --noEmit",
"start": "node scripts/start.mjs",
"start-watch": "concurrently -c auto npm:start npm:watch",
"stop": "node scripts/stop.mjs",
"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",
"reload": "npm run build-dev && node scripts/reload.mjs",
"watch": "chokidar \"package.json\" \"src/**\" \"addon/**\" -c \"npm run reload\"",
"release": "release-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windingwind/zotero-addon-template.git"
},
"author": "Minyi Han",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/windingwind/zotero-addon-template/issues"
},
"homepage": "https://github.com/redleafnew/delitemwithatt",
"dependencies": {
"concurrently": "8.01",
"trash": "^8.1.1",
"zotero-plugin-toolkit": "^2.3.30"
},
"devDependencies": {
"@types/node": "^20.11.28",
"chokidar-cli": "^3.0.0",
"compressing": "^1.10.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.12",
"minimist": "^1.2.8",
"release-it": "^16.3.0",
"replace-in-file": "^7.1.0",
"zotero-types": "^1.3.20"
}
}