glam/packages/visualizations/package.json
2025-12-21 00:01:54 +01:00

53 lines
1.2 KiB
JSON

{
"name": "@glam/visualizations",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
},
"./graph": {
"types": "./src/components/graph/index.ts",
"import": "./src/components/graph/index.ts"
},
"./map": {
"types": "./src/components/map/index.ts",
"import": "./src/components/map/index.ts"
},
"./uml": {
"types": "./src/components/uml/index.ts",
"import": "./src/components/uml/index.ts"
}
},
"scripts": {
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"d3": "^7.9.0",
"d3-geo": "^3.1.1",
"d3-zoom": "^3.0.0",
"dagre": "^0.8.5",
"elkjs": "^0.11.0",
"maplibre-gl": "^5.14.0",
"mermaid": "^11.4.0"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/dagre": "^0.7.53",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"typescript": "~5.9.3"
}
}