chore: initial project commit

This commit is contained in:
Ignacio Ballesteros
2026-02-17 21:25:46 +01:00
commit 70f7fac23e
34 changed files with 6786 additions and 0 deletions

53
package.json Normal file
View File

@@ -0,0 +1,53 @@
{
"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\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignaciobll/zotero-org-export-annotations.git"
},
"keywords": [
"zotero",
"zotero-plugin",
"org-mode",
"emacs",
"annotations",
"pdf",
"org-roam",
"citar"
],
"author": "Ignacio",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ignaciobll/zotero-org-export-annotations/issues"
},
"homepage": "https://github.com/ignaciobll/zotero-org-export-annotations#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"
}
}