generated from windingwind/zotero-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "zotero-format-metadata",
"version": "1.22.5",
"packageManager": "[email protected]",
"description": "An addon for Zotero to format item metadata.",
"config": {
"addonName": "Linter for Zotero",
"addonID": "[email protected]",
"addonRef": "linter",
"addonInstance": "Linter",
"prefsPrefix": "extensions.zotero.formatmetadata"
},
"author": "northword",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/northword/zotero-format-metadata#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/northword/zotero-format-metadata.git"
},
"bugs": {
"url": "https://github.com/northword/zotero-format-metadata/issues"
},
"main": "src/index.ts",
"scripts": {
"start": "zotero-plugin serve",
"build": "zotero-plugin build && tsc --noEmit",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"update-data": "bash data/update-data.sh",
"test": "vitest",
"release": "zotero-plugin release",
"update-deps": "pnpx taze minor -w -i"
},
"dependencies": {
"csvtojson": "^2.0.10",
"iso-locales": "^1.1.1",
"p-queue": "^8.1.0",
"tinyld": "^1.3.4",
"zotero-plugin-toolkit": "^4.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@types/node": "^22.13.0",
"conventional-changelog": "^6.0.0",
"eslint": "^9.19.0",
"eslint-plugin-format": "^1.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4",
"zotero-plugin-scaffold": "0.2.0",
"zotero-types": "^3.1.7"
}
}