-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "relation-graph-3d-force",
"version": "1.0.0",
"description": "Relation graph for Trails games based on 3d-force-graph",
"main": "./dist/",
"scripts": {
"lint": "eslint --ext .js, src",
"build:dev": "webpack --config webpack.config.js --mode=development && python3 tools/parseJson.py > demo/data.json",
"build:prod": "webpack --config webpack.config.js --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trails-game/relation-graph-3d-force.git"
},
"files": [
"dist",
"demo"
],
"keywords": [
"relation",
"trails",
"javascript",
"人物关系图"
],
"author": "trails-game <[email protected]>",
"license": "Apache",
"bugs": {
"url": "https://github.com/trails-game/relation-graph-3d-force/issues"
},
"homepage": "https://trails-game.com",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-transform-async-to-generator": "^7.17.12",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^9.1.2",
"eslint": "^8.18.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"webpack": "^5.73.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"3d-force-graph": "^1.70.10",
"axios": "^1.4.0",
"three": "^0.152.2",
"three-spritetext": "^1.6.5"
}
}