-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 2.03 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
{
"name": "zotero-reading-list",
"version": "1.5.10",
"description": "Keep track of whether you've read items in Zotero",
"config": {
"addonName": "Zotero Reading List",
"addonID": "[email protected]",
"addonRef": "zotero-reading-list",
"addonInstance": "ZoteroReadingList",
"prefsPrefix": "extensions.zotero.zotero-reading-list",
"releasePage": "https://github.com/Dominic-DallOsto/zotero-reading-list/releases",
"updateJSON": "https://github.com/Dominic-DallOsto/zotero-reading-list/releases/latest/download/update.json"
},
"main": "src/index.ts",
"scripts": {
"start": "zotero-plugin serve",
"build": "tsc --noEmit && zotero-plugin build",
"stop": "node scripts/stop.mjs",
"lint": "prettier --write . && eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it --only-version --preReleaseId=beta",
"update-deps": "npm update --save"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dominic-DallOsto/zotero-reading-list.git"
},
"author": "Dominic Dall'Osto",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Dominic-DallOsto/zotero-reading-list/issues"
},
"homepage": "https://github.com/Dominic-DallOsto/zotero-reading-list",
"dependencies": {
"zotero-plugin-toolkit": "^4.0.11"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@eslint/js": "^9.17.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"replace-in-file": "^8.3.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"zotero-plugin-scaffold": "^0.1.7",
"zotero-types": "^3.1.2"
},
"prettier": {
"printWidth": 80,
"useTabs": true,
"tabWidth": 4,
"endOfLine": "lf"
},
"release-it": {
"git": {
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": false,
"assets": [
"build/*.xpi",
"build/update*.json"
]
},
"hooks": {
"before:init": "npm run lint",
"after:bump": "npm run build"
}
}
}