zotero-better-notes/package.json

89 lines
3.0 KiB
JSON

{
"name": "zotero-better-notes",
"version": "0.8.8",
"description": "Everything about note management. All in Zotero.",
"config": {
"addonName": "Zotero Better Notes",
"addonID": "Knowledge4Zotero@windingwind.com",
"addonRef": "BetterNotes",
"prefsPrefix": "extensions.zotero.Knowledge4Zotero",
"addonInstance": "BetterNotes",
"updaterdf": "https://raw.githubusercontent.com/windingwind/zotero-better-notes/bootstrap/update.json"
},
"main": "src/index.ts",
"scripts": {
"build-dev": "cross-env NODE_ENV=development node scripts/build.js",
"build-prod": "cross-env NODE_ENV=production node scripts/build.js",
"build": "concurrently -c auto npm:build-prod npm:tsc",
"tsc": "tsc --noEmit",
"start-z6": "node scripts/start.js --z 6",
"start-z7": "node scripts/start.js --z 7",
"start": "node scripts/start.js",
"stop": "node scripts/stop.js",
"restart-dev-z6": "npm run build-dev && npm run stop && npm run start-z6",
"restart-dev-z7": "npm run build-dev && npm run stop && npm run start-z7",
"restart-dev": "npm run build-dev && npm run stop && npm run start",
"restart-prod": "npm run build-prod && npm run stop && npm run start",
"restart": "npm run restart-dev",
"release": "release-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windingwind/zotero-better-notes.git"
},
"author": "windingwind",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/windingwind/zotero-better-notes/issues"
},
"homepage": "https://github.com/windingwind/zotero-better-notes#readme",
"dependencies": {
"asciidoctor": "^2.2.6",
"crypto-js": "^4.1.1",
"diff": "^5.1.0",
"hast-util-to-html": "^8.0.3",
"hast-util-to-mdast": "^8.4.1",
"hast-util-to-text": "^3.1.1",
"hastscript": "^7.1.0",
"html-docx-js-typescript": "^0.1.5",
"rehype-format": "^4.0.1",
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-stringify": "^10.0.2",
"replace-in-file": "^6.3.2",
"seedrandom": "^3.0.5",
"tree-model": "^1.0.7",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.1",
"unist-util-visit-parents": "^5.1.1",
"yamljs": "^0.3.0",
"zotero-plugin-toolkit": "file:../zotero-plugin-toolkit"
},
"devDependencies": {
"@types/browser-or-node": "^1.3.0",
"@types/diff": "^5.0.3",
"@types/node": "^18.11.17",
"@types/seedrandom": "^3.0.5",
"@types/yamljs": "^0.2.31",
"compressing": "^1.6.3",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"esbuild": "^0.17.4",
"minimist": "^1.2.7",
"prosemirror-model": "^1.18.3",
"prosemirror-state": "^1.4.2",
"prosemirror-transform": "^1.7.1",
"prosemirror-view": "^1.30.2",
"release-it": "^15.6.0",
"replace-in-file": "^6.3.5",
"typescript": "^4.9.4",
"zotero-types": "^1.0.12"
}
}