-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 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
{
"name": "hubs-behavior-graphs-addon",
"version": "0.0.1",
"description": "Behavior graphs support for Hubs",
"scripts": {
"build": "webpack --mode=production",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"hubs",
"add-on",
"behavior graphs"
],
"author": "Manuel Martin",
"owners": [
{
"name": "Manuel Martin",
"githubUsername": "keianhzo"
}
],
"license": "MPL-2.0",
"sourceMap": "dist/*.map",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.mjs",
"peerDependencies": {
"aframe": "github:Hubs-Foundation/aframe#hubs/master",
"bitecs": "github:Hubs-Foundation/bitECS#hubs-patches",
"react": "^18.2.0",
"three": "github:Hubs-Foundation/three.js#65b5105908f5f135cad25fed07e25f15f3876777",
"troika-three-text": "^0.45.0"
},
"devDependencies": {
"@types/hubs": "github:Hubs-Foundation/hubs-ts-types#main",
"@types/node": "^18.15.0",
"@types/react": "^18.2.57",
"@types/three": "^0.141.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@oveddan-behave-graph/core": "^0.11.1"
}
}