![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the all-non-major group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.18.0` | `9.19.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.9` | `22.13.0` | | [eslint](https://github.com/eslint/eslint) | `9.18.0` | `9.19.0` | | [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.21.0` | `8.22.0` | | [zotero-types](https://github.com/windingwind/zotero-types) | `3.1.6` | `3.1.7` | Updates `@eslint/js` from 9.18.0 to 9.19.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/commits/v9.19.0/packages/js) Updates `@types/node` from 22.10.9 to 22.13.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `eslint` from 9.18.0 to 9.19.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v9.18.0...v9.19.0) Updates `typescript-eslint` from 8.21.0 to 8.22.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.22.0/packages/typescript-eslint) Updates `zotero-types` from 3.1.6 to 3.1.7 - [Release notes](https://github.com/windingwind/zotero-types/releases) - [Commits](https://github.com/windingwind/zotero-types/compare/v3.1.6...v3.1.7) --- updated-dependencies: - dependency-name: "@eslint/js" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all-non-major - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all-non-major - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all-non-major - dependency-name: typescript-eslint dependency-type: direct:development update-type: version-update:semver-minor 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>
60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "zotero-plugin-template",
|
|
"version": "3.0.3",
|
|
"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.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.19.0",
|
|
"@types/node": "^22.13.0",
|
|
"eslint": "^9.19.0",
|
|
"prettier": "^3.4.2",
|
|
"typescript": "^5.7.3",
|
|
"typescript-eslint": "^8.22.0",
|
|
"zotero-plugin-scaffold": "^0.2.0",
|
|
"zotero-types": "^3.1.7"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"tabWidth": 2,
|
|
"endOfLine": "lf",
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.xhtml"
|
|
],
|
|
"options": {
|
|
"htmlWhitespaceSensitivity": "css"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|