-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "zotero-edtechhub",
"version": "1.0.2",
"description": "EdTech hub companion plugin for Zotero",
"scripts": {
"lint": "eslint . --ext .ts --cache --cache-location .eslintcache/",
"prebuild": "npm run lint",
"build": "node esbuild.js && tsc --noEmit",
"postbuild": "zotero-plugin-zipup build zotero-edtechhub",
"release": "zotero-plugin-release",
"postversion": "git push --follow-tags",
"start": "zotero-start",
"beta": "zotero-start --beta"
},
"repository": {
"type": "git",
"url": "https://github.com/edtechhub/zotero-edtechhub.git"
},
"author": {
"name": "Björn Haßler and Emiliano Heyns",
"email": "bjoern@edtechhub.org"
},
"bugs": {
"url": "https://github.com/edtechhub/zotero-edtechhub/issues"
},
"homepage": "https://github.com/edtechhub/zotero-edtechhub",
"dependencies": {
"request": "^2.88.2",
"request-promise": "^4.2.6",
"rimraf": "^5.0.5",
"sanitize-filename": "^1.6.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"zotero-plugin": "^2.0.14"
},
"xpi": {
"name": "EdTechHub for Zotero",
"updateLink": "https://github.com/edtechhub/zotero-edtechhub/releases/download/v{version}/zotero-edtechhub-{version}.xpi",
"releaseURL": "https://github.com/edtechhub/zotero-edtechhub/releases/download/release/",
"iconURL": "chrome://zotero-edtechhub/skin/edtechhub.png",
"bootstrapped": true
},
"devDependencies": {
"@fluent/syntax": "^0.19.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3"
}
}