zotero-plugin-template/package.json
dependabot[bot] 8c3bcd5a8f
build(deps-dev): bump the all-non-major group with 2 updates (#252)
Bumps the all-non-major group with 2 updates: [zotero-plugin-scaffold](https://github.com/northword/zotero-plugin-scaffold/tree/HEAD/packages/scaffold) and [zotero-types](https://github.com/windingwind/zotero-types).


Updates `zotero-plugin-scaffold` from 0.3.3 to 0.3.5
- [Release notes](https://github.com/northword/zotero-plugin-scaffold/releases)
- [Commits](https://github.com/northword/zotero-plugin-scaffold/commits/v0.3.5/packages/scaffold)

Updates `zotero-types` from 3.1.7 to 3.1.9
- [Release notes](https://github.com/windingwind/zotero-types/releases)
- [Commits](https://github.com/windingwind/zotero-types/compare/v3.1.7...v3.1.9)

---
updated-dependencies:
- dependency-name: zotero-plugin-scaffold
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-non-major
- dependency-name: zotero-types
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-non-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-18 08:45:55 +08:00

61 lines
1.6 KiB
JSON

{
"name": "zotero-plugin-template",
"type": "module",
"version": "3.0.4",
"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": "^4.1.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"zotero-plugin-scaffold": "^0.3.5",
"zotero-types": "^3.1.9"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}