decaf-dev_obsidian-vault-ex.../package.json

49 lines
1.3 KiB
JSON
Raw Normal View History

2024-03-12 05:20:06 +00:00
{
2024-05-25 20:39:40 +00:00
"name": "obsidian-vault-explorer",
2025-05-03 02:34:34 +00:00
"version": "1.47.2",
2024-05-25 20:39:40 +00:00
"description": "Explore your vault in visual format",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
2024-07-14 03:03:55 +00:00
"build": "bun run check && bun run compile && node esbuild.config.mjs production",
"guardgen": "ts-auto-guard",
2024-07-14 03:03:55 +00:00
"compile": "tsc -noEmit -skipLibCheck",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "jest --config jest.config.js",
2025-05-03 01:52:49 +00:00
"lint": "eslint --ext .ts,.js,.svelte .",
"format": "prettier --write --ignore-path .prettierignore ."
2024-05-25 20:39:40 +00:00
},
"keywords": [],
2024-05-27 07:51:21 +00:00
"author": "DecafDev",
2024-05-25 20:39:40 +00:00
"license": "MIT",
"devDependencies": {
"@tsconfig/svelte": "^5.0.4",
2025-05-03 01:54:45 +00:00
"@types/bun": "^1.2.11",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.3",
"esbuild-svelte": "^0.9.2",
"jest": "^29.7.0",
2025-05-03 01:54:45 +00:00
"obsidian": "^1.8.7",
2025-05-03 01:52:49 +00:00
"prettier": "^3.5.3",
2025-05-03 01:54:45 +00:00
"svelte-check": "^4.1.7",
2025-01-12 01:44:31 +00:00
"svelte-preprocess": "^6.0.3",
2025-05-03 01:54:45 +00:00
"ts-auto-guard": "^5.0.1",
"ts-jest": "^29.3.2",
"tslib": "2.8.1",
"typescript": "^5.8.3"
2024-05-25 20:39:40 +00:00
},
"dependencies": {
"crypto": "^1.0.1",
2025-05-03 01:54:45 +00:00
"idb": "^8.0.2",
2024-05-25 20:39:40 +00:00
"js-logger": "^1.6.1",
"lodash": "^4.17.21",
2025-05-03 01:54:45 +00:00
"nanoid": "^5.1.5",
"svelte": "^5.28.2"
2024-05-25 20:39:40 +00:00
}
2024-03-12 05:27:59 +00:00
}