{ "name": "zotero-addon-template", "version": "2.0.0", "description": "Zotero Addon Template", "config": { "addonName": "Zotero Addon Template", "addonID": "addontemplate@euclpts.com", "addonRef": "addontemplate", "addonInstance": "AddonTemplate", "prefsPrefix": "extensions.zotero.addontemplate" }, "repository": { "type": "git", "url": "git+https://github.com/windingwind/zotero-addon-template.git" }, "author": "windingwind", "bugs": { "url": "https://github.com/windingwind/zotero-addon-template/issues" }, "homepage": "https://github.com/windingwind/zotero-addon-template#readme", "license": "AGPL-3.0-or-later", "scripts": { "start": "zotero-plugin serve", "build": "tsc --noEmit && zotero-plugin build", "lint": "prettier --write . && eslint . --ext .ts --fix", "release": "zotero-plugin release", "test": "echo \"Error: no test specified\" && exit 1", "update-deps": "npm update --save" }, "dependencies": { "zotero-plugin-toolkit": "^2.3.31" }, "devDependencies": { "@types/node": "^20.12.12", "@typescript-eslint/eslint-plugin": "^7.9.0", "@typescript-eslint/parser": "^7.9.0", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "prettier": "^3.2.5", "typescript": "^5.4.5", "zotero-plugin-scaffold": "^0.0.21", "zotero-types": "^1.3.24" }, "eslintConfig": { "env": { "browser": true, "es2021": true }, "root": true, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier" ], "overrides": [], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" }, "plugins": [ "@typescript-eslint" ], "rules": { "@typescript-eslint/ban-ts-comment": [ "warn", { "ts-expect-error": "allow-with-description", "ts-ignore": "allow-with-description", "ts-nocheck": "allow-with-description", "ts-check": "allow-with-description" } ], "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-explicit-any": [ "off", { "ignoreRestArgs": true } ], "@typescript-eslint/no-non-null-assertion": "off" }, "ignorePatterns": [ "**/.vscode/**", "**/build/**", "**/logs/**", "**/dist/**", "**/node_modules/**", "**/scripts/**", "**/*.js", "**/*.bak" ] }, "prettier": { "printWidth": 80, "tabWidth": 2, "endOfLine": "lf", "overrides": [ { "files": [ "*.xhtml" ], "options": { "htmlWhitespaceSensitivity": "css" } } ] } }