mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-26 09:23:50 +00:00
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.
26 lines
780 B
JSON
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"
|
|
}
|
|
}
|