Files
zotero-notes-export-org/package.json
Ignacio Ballesteros e356f50927 fix: patch scaffold URL parser to support self-hosted Gitea (.eu TLD)
zotero-plugin-scaffold hardcodes a .com-only regex in parseRepoUrl,
causing build failures with non-.com repository URLs. Add:
- scripts/patch-scaffold.mjs: postinstall script that fixes the regex
- zotero-plugin.config.ts: explicit xpiDownloadLink and updateURL
  so scaffold generates correct update.json without relying on the parser
2026-02-17 22:42:48 +01:00

55 lines
1.7 KiB
JSON

{
"name": "zotero-org-export-annotations",
"version": "1.0.0",
"description": "Export Zotero PDF/EPUB annotations to Org-mode files for Emacs integration",
"config": {
"addonName": "Zotero Org Export Annotations",
"addonID": "org-export-annotations@zotero.org",
"addonRef": "orgexportannotations",
"addonInstance": "OrgExportAnnotations",
"prefsPrefix": "extensions.zotero.orgexportannotations"
},
"main": "src/index.ts",
"scripts": {
"start": "zotero-plugin serve",
"build": "zotero-plugin build",
"release": "bumpp --commit --push --tag && npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\" \"addon/**/*.js\"",
"format:check": "prettier --check \"src/**/*.ts\" \"addon/**/*.js\"",
"postinstall": "node scripts/patch-scaffold.mjs"
},
"repository": {
"type": "git",
"url": "git+https://gitea.bueso.eu/ignacio.ballesteros/zotero-notes-export-org.git"
},
"keywords": [
"zotero",
"zotero-plugin",
"org-mode",
"emacs",
"annotations",
"pdf",
"org-roam",
"citar"
],
"author": "Ignacio",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://gitea.bueso.eu/ignacio.ballesteros/zotero-notes-export-org/issues"
},
"homepage": "https://gitea.bueso.eu/ignacio.ballesteros/zotero-notes-export-org#readme",
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"typescript": "^5.3.0",
"zotero-plugin-scaffold": "^0.8.3",
"zotero-types": "^4.0.5"
}
}