-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.95 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
{
"author": "Takahiro <[email protected]>",
"bugs": {
"url": "https://github.com/takahirox/tiny-web-metaverse/issues"
},
"dependencies": {
"bitecs": "^0.3.40",
"three": "^0.152.2"
},
"description": "Tiny Web metaverse",
"devDependencies": {
"@types/three": "^0.152.1",
"dts-bundle-generator": "^9.0.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"homepage": "https://github.com/takahirox/tiny-web-metaverse#readme",
"license": "MIT",
"name": "tiny-web-metaverse",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/takahirox/tiny-web-metaverse.git"
},
"scripts": {
"build:addons": "cd packages/addons && npm run build",
"build:all": "npm run build:stream_server && npm run build:stream_client && npm run build:state_client && npm run build:client && npm run build:addons && npm run build:demo",
"build:client": "cd packages/client && npm run build",
"build:demo": "cd packages/demo && npm run build",
"build:state_client": "cd packages/state_client && npm run build",
"build:stream_client": "cd packages/stream_client && npm run build",
"build:stream_server": "cd packages/stream_server && npm run build",
"install:addons": "cd packages/addons && npm install",
"install:all": "npm install && npm run install:stream_server && npm run install:stream_client && npm run install:state_client && npm run install:client && npm run install:addons && npm run install:demo",
"install:client": "cd packages/client && npm install",
"install:demo": "cd packages/demo && npm install",
"install:state_client": "cd packages/state_client && npm install",
"install:stream_client": "cd packages/stream_client && npm install",
"install:stream_server": "cd packages/stream_server && npm install"
},
"version": "0.0.1",
"workspaces": [
"./packages/*"
]
}