-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.95 KB
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": "zotero-edtechhub",
"version": "1.0.7",
"description": "EdTech hub companion plugin for Zotero",
"scripts": {
"lint": "eslint . --ext .ts --cache --cache-location .eslintcache/",
"sync:manifest-version": "node scripts/sync-manifest-version.cjs",
"prebuild": "npm run sync:manifest-version && npm run lint",
"build": "node esbuild.js && tsc --noEmit",
"postbuild": "zp-zipup build zotero-edtechhub",
"release": "zp-release",
"version": "npm run sync:manifest-version && git add manifest.json package.json package-lock.json",
"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": {
"@fluent/syntax": "^0.19.0",
"esbuild": "^0.27.2",
"rimraf": "^6.1.2",
"sanitize-filename": "^1.6.3",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"zotero-plugin": "^8.0.8"
},
"xpi": {
"name": "EdTechHub for Zotero",
"id": "edtechhub@edtechhub.org",
"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": "content/skin/edtechhub.png",
"bootstrapped": true,
"minVersion": "8.0.1",
"maxVersion": "9.*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^48.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3"
}
}