trilium/apps/dump-db/package.json
2025-10-01 20:52:25 +03:00

23 lines
610 B
JSON

{
"name": "@triliumnext/dump-db",
"version": "1.0.0",
"description": "Standalone tool to dump contents of Trilium document.db file into a directory tree of notes",
"private": true,
"dependencies": {
"better-sqlite3": "12.4.1",
"mime-types": "3.0.1",
"sanitize-filename": "1.6.3",
"tsx": "4.20.6",
"yargs": "18.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@types/mime-types": "3.0.1",
"@types/yargs": "17.0.33"
},
"scripts": {
"dev": "tsx src/main.ts",
"build": "esbuild --platform=node --format=cjs --outdir=dist src/main.ts"
}
}