forked from ThatOpen/web-ifc-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 798 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
36
{
"name": "web-ifc-viewer-root",
"description": "IFC viewer",
"version": "1.0.169",
"private": true,
"main": "viewer/src/ifc-viewer-api.ts",
"author": "agviegas",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ifcjs/web-ifc-viewer.git"
},
"scripts": {
"init-repo": "yarn && npm run build",
"start": "cd example && yarn start",
"build": "cd viewer && yarn build && cd ../example && yarn build",
"publish-repo": "cd viewer && yarn build && npm publish"
},
"bugs": {
"url": "https://github.com/agviegas/web-ifc-viewer/issues"
},
"keywords": [
"ifc",
"geometry",
"threejs",
"bim",
"3d"
],
"workspaces": [
"viewer",
"example"
],
"dependencies": {
"web-ifc": "^0.0.34"
}
}