forked from ThatOpen/web-ifc-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 879 Bytes
/
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
{
"name": "web-ifc-viewer-root",
"description": "IFC viewer",
"version": "1.0.11",
"private": true,
"author": "agviegas",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agviegas/web-ifc-viewer.git"
},
"scripts": {
"init-repo": "npm run init-yarn && npm run build",
"start": "cd examples/simple-html && npm run start",
"init-yarn": "npm i yarn -g && yarn",
"build": "cd viewer && npm run build && cd .. && cd examples/simple-html && npm run build",
"publish-repo": "cd viewer && npm run build && npm publish"
},
"bugs": {
"url": "https://github.com/agviegas/web-ifc-viewer/issues"
},
"keywords": [
"ifc",
"geometry",
"threejs",
"bim",
"3d"
],
"workspaces": [
"viewer",
"examples/simple-html",
"examples/simple-react",
"examples/simple-angular"
]
}