mirror of
https://github.com/ganesshkumar/obsidian-table-editor.git
synced 2026-07-22 06:20:29 +00:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "markdown-table-editor",
|
|
"version": "0.3.1",
|
|
"description": "An Obsidian plugin to provide an editor for Markdown tables. It can open CSV, Microsoft Excel/Google Sheets data as Markdown tables from Obsidian Markdown editor.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "jest --config jest.config.js --coverage",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^27.5.0",
|
|
"@types/node": "^16.11.6",
|
|
"@types/papaparse": "^5.3.2",
|
|
"@types/react": "^17.0.39",
|
|
"@types/react-dom": "^17.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.2.0",
|
|
"@typescript-eslint/parser": "^5.2.0",
|
|
"builtin-modules": "^3.2.0",
|
|
"esbuild": "0.13.12",
|
|
"esbuild-plugin-less": "^1.1.6",
|
|
"jest": "^28.1.0",
|
|
"obsidian": "^0.14.6",
|
|
"ts-jest": "^28.0.1",
|
|
"tslib": "2.3.1",
|
|
"typescript": "4.4.4"
|
|
},
|
|
"dependencies": {
|
|
"@arnog/esbuild-plugin-less": "^1.1.0",
|
|
"papaparse": "^5.3.1",
|
|
"react": "^17.0.2",
|
|
"react-contenteditable": "^3.3.6",
|
|
"react-dom": "^17.0.2"
|
|
}
|
|
}
|