mirror of
https://github.com/liubinfighter/csv-lite.git
synced 2026-07-22 12:20:28 +00:00
33 lines
883 B
JSON
33 lines
883 B
JSON
{
|
|
"name": "obsidian-csv",
|
|
"version": "1.1.0",
|
|
"description": "CSV viewer and editor for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@codemirror/commands": "^6.8.1",
|
|
"@codemirror/language": "^6.11.1",
|
|
"papaparse": "^5.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.5",
|
|
"@types/node": "^16.11.6",
|
|
"@types/papaparse": "^5.3.7",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"jest": "^29.7.0",
|
|
"obsidian": "latest",
|
|
"ts-jest": "^29.1.1",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|