mirror of
https://github.com/jeansordes/dot-navigator.git
synced 2026-07-22 07:48:39 +00:00
72 lines
2.3 KiB
JSON
72 lines
2.3 KiB
JSON
{
|
|
"name": "dot-navigator",
|
|
"type": "module",
|
|
"version": "1.27.0",
|
|
"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 build && npm run test",
|
|
"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 .",
|
|
"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",
|
|
"prepare": "husky"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"dendron",
|
|
"hierarchical",
|
|
"notes",
|
|
"knowledge-management"
|
|
],
|
|
"author": "Jean Sordes",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@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",
|
|
"builtin-modules": "^3.3.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",
|
|
"husky": "^9.1.7",
|
|
"jest": "^29.7.0",
|
|
"obsidian": "^1.13.0",
|
|
"rimraf": "^5.0.5",
|
|
"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"
|
|
}
|
|
}
|