stfrigerio_sqliteDB/package.json

31 lines
811 B
JSON
Raw Permalink Normal View History

2025-01-29 17:35:31 +00:00
{
2025-01-29 18:20:48 +00:00
"name": "sqlitedb",
2025-11-05 13:04:41 +00:00
"version": "1.0.3",
2025-01-29 18:20:48 +00:00
"description": "A plugin that allows to interact with sqlite databases in Obsidian",
2025-01-29 17:35:31 +00:00
"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"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
2025-01-29 18:20:48 +00:00
"@types/better-sqlite3": "^7.6.12",
2025-01-29 17:35:31 +00:00
"@types/node": "^16.11.6",
2025-01-29 18:20:48 +00:00
"@types/sql.js": "^1.4.9",
2025-01-29 17:35:31 +00:00
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
2025-01-29 18:20:48 +00:00
},
"dependencies": {
2025-11-05 13:04:22 +00:00
"chart.js": "^4.5.1",
2025-01-29 18:20:48 +00:00
"sql.js": "^1.12.0"
2025-01-29 17:35:31 +00:00
}
}