decaf-dev_obsidian-vault-ex.../package.json
Trey Wallis 5376c595c2
Feat logging (#28)
* feat: add logging functionality

* refactor: move into types folder

* feat: add log statement for saving

* refactor: use logger.warn instead of console.error
2024-05-25 14:25:02 -06:00

35 lines
990 B
JSON

{
"name": "obsidian-vault-explorer",
"version": "1.0.0",
"description": "Explore your vault in visual format",
"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": "Trey Wallis",
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^5.0.4",
"@types/bun": "latest",
"@types/lodash": "^4.17.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-svelte": "^0.8.0",
"obsidian": "latest",
"svelte-preprocess": "^5.1.4",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"js-logger": "^1.6.1",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"svelte": "^4.2.15"
}
}