liubinfighter_csv-lite/package.json

32 lines
806 B
JSON
Raw Normal View History

2025-03-23 10:34:41 +00:00
{
"name": "obsidian-csv",
"version": "1.0.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": {
"papaparse": "^5.4.1"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/papaparse": "^5.3.7",
"@types/jest": "^29.5.5",
"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"
}
2025-03-23 10:34:41 +00:00
}