mirror of
https://github.com/nn-ninja/n-brace.git
synced 2026-07-22 06:42:36 +00:00
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "3d-graph",
|
|
"version": "1.0.8",
|
|
"description": "A 3D graph 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",
|
|
"lint": "eslint . --ext .ts --fix"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"3D",
|
|
"D3",
|
|
"3D graph",
|
|
"graph"
|
|
],
|
|
"author": "Hananoshika Yomaru",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@total-typescript/ts-reset": "^0.5.1",
|
|
"@types/d3": "^7.4.0",
|
|
"@types/eslint": "^8.44.4",
|
|
"@types/node": "^16.11.6",
|
|
"@types/three": "^0.157.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
"@typescript-eslint/parser": "^6.7.0",
|
|
"builtin-modules": "3.3.0",
|
|
"bun-types": "^1.0.5",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^8.51.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
|
"husky": "^8.0.3",
|
|
"obsidian": "latest",
|
|
"prettier": "^2.8.8",
|
|
"semver": "^7.5.4",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.0.5"
|
|
},
|
|
"dependencies": {
|
|
"3d-force-graph": "^1.72.3",
|
|
"d3": "^7.8.5",
|
|
"observable-slim": "^0.1.6",
|
|
"three": "^0.157.0"
|
|
}
|
|
}
|