-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.65 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.65 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
{
"name": "zotero-folder-import",
"version": "0.1.0",
"description": "Import folder of attachments into a collection hierarchy",
"scripts": {
"postinstall": "patch-package || true",
"lint": "dprint fmt bootstrap.ts content/*.ts && dprint check bootstrap.ts content/*.ts",
"prebuild": "npm run lint",
"build": "rm -rf build && tsc --noEmit && node esbuild.js",
"postbuild": "zotero-plugin-zipup build zotero-folder-import",
"release": "zotero-plugin-release",
"postversion": "git push --follow-tags",
"start": "npm run build && zotero-start",
"ncu": "ncu -u && npm i && git add package.json package-lock.json && git commit -m ncu"
},
"repository": {
"type": "git",
"url": "https://github.com/retorquere/zotero-folder-import.git"
},
"author": {
"name": "Emiliano Heyns",
"email": "emiliano.heyns@iris-advies.com"
},
"bugs": {
"url": "https://github.com/retorquere/zotero-folder-import/issues"
},
"homepage": "https://github.com/retorquere/zotero-folder-import",
"devDependencies": {
"dprint": "^0.50.0",
"esbuild": "^0.25.5",
"patch-package": "^8.0.0",
"pretty": "^2.0.0",
"pug": "^3.0.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"zotero-plugin": "^8.0.8",
"zotero-types": "^4.0.5"
},
"xpi": {
"name": "Folder Import for Zotero",
"updateLink": "https://github.com/retorquere/zotero-folder-import/releases/download/v{version}/zotero-auto-index-{version}.xpi",
"releaseURL": "https://github.com/retorquere/zotero-folder-import/releases/download/release/"
},
"dependencies": {
"zotero-plugin-toolkit": "5.1.0-beta.13"
}
}