zotero-plugin-template/package.json
Northword 7f062b198a
ci: group dependabot prs and run lint&build for every push&pr (#233)
* ci: group all non-major deps for dependabot

closes: #222

* ci: run lint and build on every push

* ci: upload xpi to artifact

* ci: fix lint:check script

* ci: fix dist path
2024-12-30 15:36:39 +01:00

60 lines
1.6 KiB
JSON

{
"name": "zotero-plugin-template",
"version": "3.0.3",
"description": "Zotero Plugin Template",
"config": {
"addonName": "Zotero Plugin Template",
"addonID": "addontemplate@euclpts.com",
"addonRef": "addontemplate",
"addonInstance": "AddonTemplate",
"prefsPrefix": "extensions.zotero.addontemplate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windingwind/zotero-plugin-template.git"
},
"author": "windingwind",
"bugs": {
"url": "https://github.com/windingwind/zotero-plugin-template/issues"
},
"homepage": "https://github.com/windingwind/zotero-plugin-template#readme",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "zotero-plugin serve",
"build": "tsc --noEmit && zotero-plugin build",
"lint:check": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"release": "zotero-plugin release",
"test": "echo \"Error: no test specified\" && exit 1",
"update-deps": "npm update --save"
},
"dependencies": {
"zotero-plugin-toolkit": "^4.0.16"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"zotero-plugin-scaffold": "^0.1.7",
"zotero-types": "^3.0.11"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}