generated from windingwind/zotero-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.6 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-format-metadata",
"version": "1.21.8",
"packageManager": "pnpm@9.12.3",
"description": "An addon for Zotero to format item metadata.",
"config": {
"addonName": "Linter for Zotero",
"addonID": "zotero-format-metadata@northword.cn",
"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": "tsc --noEmit && zotero-plugin build",
"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.0.1",
"tinyld": "^1.3.4",
"zotero-plugin-toolkit": "^4.0.7"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@release-it/keep-a-changelog": "^5.0.0",
"@types/node": "^22.0.0",
"conventional-changelog": "^6.0.0",
"eslint": "^9.13.0",
"eslint-plugin-format": "^0.1.2",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"zotero-plugin-scaffold": "^0.1.7",
"zotero-types": "^3.0.1"
}
}