zotero-plugin-template/package.json
2024-09-24 12:40:13 +02:00

59 lines
1.5 KiB
JSON

{
"name": "zotero-plugin-template",
"version": "3.0.0",
"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": "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": "^3.0.4"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/node": "^22.6.1",
"eslint": "^9.11.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"zotero-plugin-scaffold": "^0.1.4",
"zotero-types": "^2.1.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}