dependabot[bot] 38a1e6718c
Some checks failed
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled
build(deps-dev): bump the all-non-major group across 1 directory with 3 updates (#271)
Bumps the all-non-major group with 3 updates in the / directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) and [zotero-types](https://github.com/windingwind/zotero-types).


Updates `@types/node` from 22.15.29 to 22.15.30
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `typescript-eslint` from 8.33.0 to 8.34.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.34.0/packages/typescript-eslint)

Updates `zotero-types` from 4.0.0 to 4.0.3
- [Release notes](https://github.com/windingwind/zotero-types/releases)
- [Commits](https://github.com/windingwind/zotero-types/compare/v4.0.0...v4.0.3)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 22.15.30
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-non-major
- dependency-name: typescript-eslint
  dependency-version: 8.34.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-non-major
- dependency-name: zotero-types
  dependency-version: 4.0.3
  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-06-10 11:23:42 +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"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/node": "^22.15.30",
"eslint": "^9.28.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"zotero-plugin-scaffold": "^0.6.0",
"zotero-types": "^4.0.3"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.xhtml"
],
"options": {
"htmlWhitespaceSensitivity": "css"
}
}
]
}
}