super-productivity/packages/plugin-dev/document-mode/package.json
Johannes Millan 73e3715dd0 refactor(document-mode): add pure doc-transform module and test runner
Extract the load-time document pipeline (schema migration, ctx
reconciliation, subtask backfill, chip refresh) into a DOM-free
doc-transform module, and add a node:test runner (scripts/test.js) so
the plugin's pure logic can be unit tested without a browser harness.
2026-05-22 13:42:21 +02:00

26 lines
780 B
JSON

{
"name": "document-mode",
"version": "0.1.0",
"description": "Document-style editor for projects and Today using TipTap",
"private": true,
"scripts": {
"build": "node scripts/build.js",
"deploy": "npm run build && node scripts/deploy.js",
"lint": "tsc --noEmit",
"test": "node scripts/test.js"
},
"devDependencies": {
"@types/node": "^22.15.33",
"esbuild": "^0.25.11",
"typescript": "^5.8.3"
},
"dependencies": {
"@super-productivity/plugin-api": "file:../../plugin-api",
"@tiptap/core": "^2.10.0",
"@tiptap/extension-bubble-menu": "^2.27.2",
"@tiptap/extension-floating-menu": "^2.27.2",
"@tiptap/extension-placeholder": "^2.10.0",
"@tiptap/starter-kit": "^2.10.0",
"@tiptap/suggestion": "^2.10.0"
}
}