FLUJOS/VISUALIZACION/node_modules/3d-force-graph/package.json
2025-11-07 00:06:12 +01:00

72 lines
1.8 KiB
JSON
Executable file

{
"name": "3d-force-graph",
"version": "1.73.3",
"description": "UI component for a 3D force-directed graph using ThreeJS and d3-force-3d layout engine",
"type": "module",
"unpkg": "dist/3d-force-graph.min.js",
"main": "dist/3d-force-graph.mjs",
"module": "dist/3d-force-graph.mjs",
"types": "dist/3d-force-graph.d.ts",
"exports": {
"types": "./dist/3d-force-graph.d.ts",
"umd": "./dist/3d-force-graph.min.js",
"default": "./dist/3d-force-graph.mjs"
},
"sideEffects": [
"./src/*.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/3d-force-graph.git"
},
"homepage": "https://github.com/vasturiano/3d-force-graph",
"keywords": [
"3d",
"force",
"graph",
"three",
"ngraph",
"webgl"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/3d-force-graph/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.js",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"example/**/*"
],
"dependencies": {
"accessor-fn": "1",
"kapsule": "1",
"three": ">=0.118 <1",
"three-forcegraph": "1",
"three-render-objects": "^1.29"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"postcss": "^8.4.38",
"rimraf": "^5.0.5",
"rollup": "^4.13.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=12"
}
}