-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.81 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "graph-canvas",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "./dist/graph-canvas.umd.cjs",
"module": "./dist/graph-canvas.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/graph-canvas.js",
"require": "./dist/graph-canvas.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"docs:watch": "typedoc --out docs ./src --watch & live-server --port=8005 docs/ --entry-file=docs/index.html",
"docs:build": "npx typedoc src",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\""
},
"devDependencies": {
"@dagrejs/dagre": "^1.1.3",
"@eslint/js": "^9.3.0",
"@microsoft/tsdoc": "^0.14.2",
"@pixi/devtools": "^1.2.2",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-storysource": "^8.2.6",
"@storybook/blocks": "^8.0.9",
"@storybook/html": "^8.0.9",
"@storybook/html-vite": "^8.0.9",
"@storybook/test": "^8.0.9",
"@types/d3": "^7.4.3",
"@types/dat.gui": "^0.7.13",
"@types/leaflet": "^1.9.12",
"@types/node": "^20.11.20",
"d3": "^7.9.0",
"d3-force": "^3.0.0",
"dat.gui": "^0.7.9",
"eslint": "^8.57.0",
"globals": "^15.3.0",
"jsdoc": "^4.0.3",
"leaflet": "^1.9.4",
"live-server": "^1.1.0",
"storybook": "^8.0.9",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3"
},
"dependencies": {
"gl-matrix": "^3.4.3",
"pixi-viewport": "github:davidfig/pixi-viewport",
"pixi.js": "^8.3.3",
"string-to-color": "^2.2.2"
}
}