forked from PierreCapo/treeviz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 KB
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
{
"name": "treeviz",
"version": "3.0.1",
"type": "module",
"description": "Library which aims to represent trees for data visualization",
"license": "MIT",
"main": "./dist/treeviz.js",
"types": "./dist/index.d.ts",
"keywords": [
"d3",
"data",
"visualization",
"tree",
"decision",
"hierarchy",
"dynamic"
],
"repository": {
"type": "git",
"url": "https://github.com/PierreCapo/treeviz"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^20.10.3",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"esbuild": "^0.24.2",
"jsdom": "^28.1.0",
"rollup": "^4.34.0",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"vite": "^5.0.6",
"vite-plugin-dts": "^3.6.4",
"vitest": "^4.0.18",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@types/d3-hierarchy": "^3.1.6",
"@types/d3-selection": "^3.0.10",
"@types/d3-transition": "^3.0.8",
"@types/d3-zoom": "^3.0.8",
"d3-hierarchy": "^3.1.2",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"tslib": "^2.8.1"
}
}