mirror of
https://github.com/nn-ninja/n-brace.git
synced 2026-07-22 06:42:36 +00:00
Migrate eslint.config.mjs to official obsidianmd plugin template, fix no-unsafe-assignment in fileGraphMethods.ts frontmatter access.
71 lines
2 KiB
JSON
71 lines
2 KiB
JSON
{
|
|
"name": "n-brace",
|
|
"version": "1.0.4",
|
|
"description": "A graph navigation and visualization for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "bun esbuild.config.mjs",
|
|
"build": "bun esbuild.config.mjs production",
|
|
"version": "bun version-bump.mjs && git add manifest.json versions.json",
|
|
"release": "bash ./release.sh",
|
|
"prepare": "husky install",
|
|
"typecheck": "tsc -noEmit -skipLibCheck && bunx dpdm -T --exit-code circular:1 --warning false --tree false src/main.ts",
|
|
"lint": "eslint . --ext .ts,.tsx --fix"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"n-brace",
|
|
"navigation",
|
|
"D3",
|
|
"graph"
|
|
],
|
|
"author": "Rafael Hazan",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@eslint/json": "^1.0.1",
|
|
"@microsoft/eslint-plugin-sdl": "^1.1.0",
|
|
"@total-typescript/ts-reset": "^0.5.1",
|
|
"@types/d3": "^7.4.0",
|
|
"@types/eslint": "^8.44.4",
|
|
"@types/node": "^16.11.6",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/three": "^0.157.0",
|
|
"builtin-modules": "3.3.0",
|
|
"dpdm": "^3.14.0",
|
|
"esbuild": "^0.27.0",
|
|
"eslint": "^9",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-depend": "^1.5.0",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-obsidianmd": "^0.1.9",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"eslint-plugin-react": "^7.35.0",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
"husky": "^8.0.3",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.6.2",
|
|
"semver": "^7.5.4",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.0.5",
|
|
"typescript-eslint": "^8.35.1"
|
|
},
|
|
"dependencies": {
|
|
"@tweenjs/tween.js": "^21.0.0",
|
|
"copy-anything": "^3.0.5",
|
|
"d3": "^7.9.0",
|
|
"d3-force": "^3.0.0",
|
|
"graphology": "^0.26.0",
|
|
"jotai": "^2.9.1",
|
|
"lucide-react": "^0.511.0",
|
|
"polytype": "^0.17.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "18.3.1",
|
|
"react-force-graph-2d": "^1.29.0",
|
|
"three": "^0.157.0",
|
|
"zod": "^3.22.4"
|
|
}
|
|
}
|