zotero-plugin-template/package.json
dependabot[bot] a0aee6f4fe
build(deps-dev): bump typescript-eslint from 8.8.0 to 8.14.0 (#210)
Bumps [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) from 8.8.0 to 8.14.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.14.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-16 12:46:29 +01:00

59 lines
1.5 KiB
JSON

{
"name": "zotero-plugin-template",
"version": "3.0.1",
"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": "^4.0.9"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.7.4",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"zotero-plugin-scaffold": "^0.1.6",
"zotero-types": "^2.2.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}