mirror of
https://github.com/svm0n/datadeck.git
synced 2026-07-22 08:31:46 +00:00
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Tfyt1TBd7DiNic32s6E4nq
36 lines
1.3 KiB
JSON
36 lines
1.3 KiB
JSON
{
|
|
"name": "datadeck",
|
|
"version": "1.6.1",
|
|
"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 datadeck/ && cp main.js styles.css manifest.json 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",
|
|
"lint": "eslint main.ts \"src/**/*.ts\"",
|
|
"check": "npm run typecheck && npm run test:all && npm run lint && npm run build:deploy",
|
|
"reload": "obsidian plugin:reload id=datadeck",
|
|
"errors": "obsidian dev:errors"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"@typescript-eslint/parser": "^8.64.0",
|
|
"esbuild": "^0.19.0",
|
|
"eslint": "^9.39.5",
|
|
"eslint-plugin-obsidianmd": "^0.4.1",
|
|
"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"
|
|
}
|
|
}
|