forked from daidaishengweinan/zotero-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.28 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
{
"name": "zotero-file",
"version": "0.2.6",
"description": "Zotero 7 Meet ZotFile",
"config": {
"addonName": "Wandering File",
"addonID": "zoterofile@polygon.org",
"addonRef": "zoterofile",
"addonInstance": "ZoteroFile",
"prefsPrefix": "extensions.zotero.zoterofile",
"releasepage": "https://github.com/muisedestiny/zotero-file/releases/latest/download/zotero-file.xpi",
"updaterdf": "https://raw.githubusercontent.com/muisedestiny/zotero-file/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": "npm run build-dev && 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 \"src/**\" \"addon/**\" -c \"npm run reload\"",
"release": "release-it",
"lint": "prettier --write . && eslint . --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "npm update --save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muisedestiny/zotero-file.git"
},
"author": "Polygon",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/muisedestiny/zotero-file/issues"
},
"homepage": "https://github.com/muisedestiny/zotero-file#readme",
"dependencies": {
"zotero-plugin-toolkit": "^2.1.5"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chokidar-cli": "^3.0.0",
"compressing": "^1.9.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"esbuild": "^0.18.12",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"release-it": "^16.1.0",
"replace-in-file": "^7.0.1",
"typescript": "^5.1.6",
"zotero-types": "^1.0.16"
}
}