zotero-plugin-template/package.json
dependabot[bot] 742e9ca799
build(deps-dev): bump zotero-types from 4.0.0-beta.3 to 4.0.0-beta.10 (#262)
Bumps [zotero-types](https://github.com/windingwind/zotero-types) from 4.0.0-beta.3 to 4.0.0-beta.10.
- [Release notes](https://github.com/windingwind/zotero-types/releases)
- [Commits](https://github.com/windingwind/zotero-types/compare/v4.0.0-beta.3...v4.0.0-beta.10)

---
updated-dependencies:
- dependency-name: zotero-types
  dependency-version: 4.0.0-beta.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-29 08:17:06 +08:00

61 lines
1.6 KiB
JSON

{
"name": "zotero-plugin-template",
"type": "module",
"version": "3.1.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": "zotero-plugin build && tsc --noEmit",
"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": "^5.0.0-0"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/node": "^22.15.3",
"eslint": "^9.25.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"zotero-plugin-scaffold": "^0.5.0",
"zotero-types": "^4.0.0-beta.10"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}