note-graph
Version:
a generic visualization tool designed to show the structure of the document space and the relations between each doc
60 lines (59 loc) • 1.65 kB
JSON
{
"name": "note-graph",
"description": "a generic visualization tool designed to show the structure of the document space and the relations between each doc",
"version": "0.3.0",
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "cd demo && yarn start",
"build": "rollup --config build/rollup.config.js",
"build-demo": "cd demo && yarn build",
"ci-build": "cd demo && yarn && yarn build",
"prepublishOnly": "yarn build",
"lint": "eslint src/**/*.ts"
},
"source": "src/index.ts",
"main": "dist/note-graph.js",
"browser": "dist/note-graph.umd.js",
"module": "dist/note-graph.esm.js",
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"author": "hikerpig",
"keywords": [
"graph",
"visualization",
"foam"
],
"repository": {
"type": "git",
"url": "https://github.com/hikerpig/note-graph.git"
},
"license": "MIT",
"dependencies": {
"d3": "^7.0.1",
"d3-color": "^3.0.1",
"d3-force": "^3.0.0",
"d3-scale": "^4.0.0",
"force-graph": "^1.42.2",
"throttle-debounce": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@types/d3-color": "^3.0.2",
"@types/d3-force": "^3.0.3",
"@types/d3-scale": "^4.0.1",
"@typescript-eslint/parser": "^4.31.0",
"core-js": "3",
"eslint": "^7.32.0",
"lerna": "^4.0.0",
"rollup": "^2.56.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "4"
}
}