mirror of
https://github.com/svm0n/datadeck.git
synced 2026-07-22 08:31:46 +00:00
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.
32 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|