{ "name": "markdb-connect", "version": "0.1.0-rc.6", "description": "Zotero plugin that links your Markdown database to Zotero.", "author": "Dae Houlihan (https://daeh.info)", "license": "MIT", "config": { "addonName": "MarkDB-Connect", "addonID": "daeda@mit.edu", "addonRef": "mdbc", "addonInstance": "MDBC", "prefsPrefix": "extensions.zotero.mdbc", "releasePage": "https://github.com/daeh/zotero-markdb-connect/releases", "updateJSON": "https://raw.githubusercontent.com/daeh/zotero-markdb-connect/main/update.json" }, "scripts": { "start": "node scripts/server.mjs", "build": "tsc --noEmit && node scripts/build.mjs production", "stop": "node scripts/stop.mjs", "lint": "export ESLINT_USE_FLAT_CONFIG=true && export NODE_ENV=production && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix .", "lint-dry": "export ESLINT_USE_FLAT_CONFIG=true && export NODE_ENV=production && prettier --config prettier.config.mjs --check . ; eslint --config eslint.config.mjs .", "test": "echo \"Error: no test specified\" && exit 1", "release": "DEBUG=release-it:* release-it", "update-deps": "npm update --save && npm update --save-dev && npm outdated --depth=0", "postinstall": "node ./scripts/linkconfig.mjs" }, "main": "src/index.ts", "repository": { "type": "git", "url": "git+https://github.com/daeh/zotero-markdb-connect.git" }, "bugs": { "url": "https://github.com/daeh/zotero-markdb-connect/issues" }, "homepage": "https://github.com/daeh/zotero-markdb-connect#readme", "dependencies": { "zotero-plugin-toolkit": "^2.3.12" }, "devDependencies": { "@stylistic/eslint-plugin": "^1.5.1", "@stylistic/eslint-plugin-js": "^1.4.1", "@stylistic/eslint-plugin-ts": "^1.4.1", "@types/node": "^20.10.4", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", "chokidar": "^3.5.3", "compressing": "^1.10.0", "esbuild": "^0.19.9", "eslint": "^8.55.0", "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.0", "eslint-plugin-prettier": "^5.0.1", "globals": "^13.24.0", "prettier": "^3.1.1", "release-it": "^17.0.1", "replace-in-file": "^7.0.2", "typescript": "^5.3.3", "zotero-types": "^1.3.7" }, "release-it": { "git": { "tagName": "v${version}" }, "npm": { "publish": false }, "github": { "release": true, "assets": [ "build/*.xpi" ] }, "hooks": { "before:init": "npm run lint", "after:bump": "npm run build", "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}." } } }