mirror of
https://github.com/jeansordes/dot-navigator.git
synced 2026-07-22 07:48:39 +00:00
77 lines
2.7 KiB
JSON
77 lines
2.7 KiB
JSON
{
|
|
"name": "dot-navigator",
|
|
"type": "module",
|
|
"version": "1.28.6",
|
|
"description": "A hierarchical note management system for your vault",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "concurrently \"sass --watch --load-path=. src/styles.scss:styles.css --style=compressed\" \"node esbuild.config.mjs\"",
|
|
"build": "npm run build:css && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"build:css": "sass src/styles.scss styles.css --style=compressed",
|
|
"ci": "npm run lint && npm run lint:hygiene && npm run audit:prod && npm run build && npm run test",
|
|
"audit:prod": "npm audit --omit=dev",
|
|
"commit": "cz",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && node --loader ts-node/esm --no-warnings --experimental-specifier-resolution=node scripts/cleanup-changelog.ts",
|
|
"release:patch": "npm run build && node release.mjs patch",
|
|
"release:minor": "npm run build && node release.mjs minor",
|
|
"release:major": "npm run build && node release.mjs major",
|
|
"release:beta": "npm run build && node release.mjs beta",
|
|
"test": "jest",
|
|
"lint": "eslint . --max-warnings 0",
|
|
"lint:hygiene": "node scripts/fix-obsidian-lint.mjs --check && node scripts/fix-instanceof.mjs --check",
|
|
"lint:obsidian": "npm run lint",
|
|
"lint:fix": "node scripts/fix-obsidian-lint.mjs --write && node scripts/fix-instanceof.mjs --write && eslint . --fix",
|
|
"lint:fn-length": "node scripts/analyze-functions.cjs",
|
|
"lint:ls": "npm run lint | grep -E '^[^ ]+\\.js|^[^ ]+\\.ts' | awk '{print $1}' | sort | uniq",
|
|
"lint:open": "scripts/lint-open.sh",
|
|
"pre-review": "node scripts/pre-review.mjs",
|
|
"prepare": "husky"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"dendron",
|
|
"hierarchical",
|
|
"notes",
|
|
"knowledge-management"
|
|
],
|
|
"author": "Jean Sordes",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^8.57.0",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^20.10.5",
|
|
"@typescript-eslint/eslint-plugin": "^8.31.0",
|
|
"@typescript-eslint/parser": "^8.31.0",
|
|
"commitizen": "^4.3.1",
|
|
"concurrently": "^9.2.1",
|
|
"conventional-changelog-cli": "^4.1.0",
|
|
"cz-conventional-changelog": "^3.0.1",
|
|
"esbuild": "^0.25.9",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-obsidianmd": "^0.3.0",
|
|
"husky": "^9.1.7",
|
|
"jest": "^29.7.0",
|
|
"obsidian": "^1.13.0",
|
|
"sass": "^1.93.2",
|
|
"ts-jest": "^29.3.0",
|
|
"ts-node": "^10.9.2",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.8.2",
|
|
"typescript-eslint": "^8.31.0"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/virtual-core": "^3.13.12",
|
|
"debug": "^4.4.1",
|
|
"yaml": "^2.8.1"
|
|
},
|
|
"overrides": {
|
|
"tmp": ">=0.2.4",
|
|
"external-editor": ">=4.0.0",
|
|
"inquirer": ">=9.0.0"
|
|
}
|
|
}
|