svm0n_datadeck/package.json
SVM0N 4faff4588e docs/config: restore current docs and package metadata, history stripped
README.md, docs/{architecture,css-classes,dev-workflow}.md, manifest.json,
package.json, package-lock.json, versions.json, .gitignore, LICENSE, and
tsconfig.json are re-added here with their current content only. Their
prior revision history is gone by design: an audit found 22 of README.md's
24 historical revisions still linked to handoff.md (a gitignored, never-
published file) — a dead reference that only ever disclosed the private
doc's existence, not its content, but was live across nearly the entire
project history until a recent cleanup. Since these are docs/metadata
rather than code, commit-by-commit revision history has no review value
here; only the current, already-audited content is kept. Code history
(everything else) is untouched.
2026-07-16 14:03:23 +00:00

32 lines
1.1 KiB
JSON

{
"name": "datadeck",
"version": "1.6.0",
"description": "DataDeck: XLSX/CSV multi-view plugin for Obsidian",
"main": "main.js",
"scripts": {
"build": "node esbuild.config.mjs",
"dev": "node esbuild.config.mjs --watch",
"deploy": "cp main.js styles.css manifest.json world-map.svg datadeck/ && cp main.js styles.css manifest.json world-map.svg datadeck-work/",
"build:deploy": "npm run build && npm run deploy",
"test": "node test-plugin-logic.mjs",
"test:csv": "node test-csv-parser.mjs",
"test:view": "node test-view-smoke.mjs",
"test:all": "node test-csv-parser.mjs && node test-plugin-logic.mjs && node test-view-smoke.mjs",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run test:all && npm run build:deploy",
"reload": "obsidian plugin:reload id=datadeck",
"errors": "obsidian dev:errors"
},
"devDependencies": {
"@types/node": "^18.0.0",
"esbuild": "^0.19.0",
"jsdom": "^29.1.1",
"obsidian": "latest",
"typescript": "^5.0.0"
},
"dependencies": {
"@types/papaparse": "^5.5.2",
"chart.js": "^4.5.1",
"papaparse": "^5.5.3"
}
}