forked from filipinascimento/helios-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "helios-web",
"description": "Helios Web is a web-based library to visualize large-scale dynamic networks in real-time. Currently under development, it aims to provide a simple API and optimized implementation to be integrated into other systems.",
"version": "0.7.9",
"type": "module",
"jsdelivr": "./dist/helios.js",
"unpkg": "./dist/helios.js",
"files": [
"dist"
],
"main": "./dist/helios.umd.cjs",
"module": "./dist/helios.js",
"exports": {
".": {
"import": "./dist/helios.js",
"require": "./dist/helios.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "[email protected]:filipinascimento/helios-web.git"
},
"author": {
"name": "Filipi N. Silva",
"url": "https://filipinascimento.github.io"
},
"license": "MIT",
"keywords": [
"network",
"visualization",
"webgl",
"interactive",
"3d"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"docs": "jsdoc -c jsdoc.conf.json src/ -r -R README.md -d docs/api",
"dev_example": "vite dev -c vite.config.example.js",
"build_example": "vite build -c vite.config.example.js && jsdoc -c jsdoc.conf.json src/ -r -R README.md -d dist_example/docs/api",
"preview_example": "vite preview -c vite.config.example.js"
},
"dependencies": {
"@colormap/core": "^0.2.0",
"@colormap/presets": "^0.2.0",
"@npmcli/arborist": ">=2.8.2",
"avl": "~1.5.3",
"d3": "^7.8.2",
"d3-ease": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"detect-gpu": "^5.0.15",
"fast-png": "^5.0.4",
"gl-matrix": "^3.3.0",
"json-query": "^2.2.2",
"pako": "~2.1.0",
"pica": "^9.0.1",
"sylvester-es6": "github:filipinascimento/sylvester-es6#fix_duplicate_makeortho",
"tar": ">=6.1.9",
"tweakpane": "^3.1.7"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.29.2",
"better-docs": "github:njetsy/better-docs-jsdoc4#chore/jsdoc4-update",
"clean-jsdoc-theme": "^4.2.6",
"docdash": "^2.0.1",
"jsdoc": "^4.0.2",
"jsdoc-typeof-plugin": "^1.0.0",
"jsdom": "^21.0.0",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"engines": {
"node": ">=14"
}
}