-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.23 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
{
"name": "@jonobr1/force-directed-graph",
"version": "1.20.0",
"description": "GPU supercharged attraction-graph visualizations for the web built on top of Three.js",
"main": "build/fdg.js",
"module": "build/fdg.module.js",
"types": "types.d.ts",
"scripts": {
"dev": "esbuild --servedir=. --serve=8080",
"build": "node ./utils/build.js",
"lint": "eslint . --fix",
"types": "tsc --outFile types.d.ts"
},
"files": [
"package.json",
"src",
"build",
"readme.md",
"index.html"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jonobr1/force-directed-graph.git"
},
"keywords": [
"force",
"directed",
"graph",
"physics",
"gpgpu",
"data",
"visualization",
"dataviz",
"2d",
"3d",
"three.js",
"webgl"
],
"author": {
"name": "jonobr1",
"url": "http://jonobr1.com/"
},
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/jonobr1/force-directed-graph/issues"
},
"homepage": "https://github.com/jonobr1/force-directed-graph#readme",
"devDependencies": {
"esbuild": "^0.14.47",
"eslint": "^8.18.0",
"react": "^18.2.0",
"three": "^0.141.0",
"typescript": "^4.7.4"
}
}