-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "@petitatelier/three-web-components",
"private": true,
"description": "A collection of Web Components to compose Three.js apps",
"author": "Olivier Lange",
"license": "BSD-3-Clause",
"scripts": {
"bootstrap": "npm install && ./scripts/bootstrap.sh",
"dev": "polyserve --npm --module-resolution=node --open-path=demos/index.html --hostname $npm_package_config_http_host --port $npm_package_config_http_port",
"dev:osc": "node_modules/.bin/osc-bridge & npm run dev && fg",
"publish": "npx lerna publish"
},
"config": {
"http": {
"host": "0.0.0.0",
"port": "8081"
},
"osc-bridge": {
"udp-server": {
"host": "0.0.0.0",
"port": "7400"
},
"udp-client": {
"host": "192.168.178.29",
"port": "7500"
},
"ws-server": {
"host": "0.0.0.0",
"port": "8080"
}
}
},
"devDependencies": {
"@petitatelier/osc-bridge": "latest",
"@webcomponents/webcomponentsjs": "^2.4.3",
"lerna": "^3.20.2",
"osc-js": "^2.1.0",
"polyserve": "^0.27.15"
},
"keywords": [
"three",
"webcomponents",
"3d"
],
"repository": {
"type": "git",
"url": "git+https://github.com/petitatelier/three-web-components.git"
},
"bugs": {
"url": "https://github.com/petitatelier/three-web-components/issues"
},
"homepage": "https://github.com/petitatelier/three-web-components#readme"
}