forked from xBimTeam/XbimWebUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "@xbim/viewer",
"description": "WebGL 3D viewer for wexBIM files",
"license": "CDDL-1.0",
"repository": {
"type": "git",
"url": "https://github.com/xBimTeam/XbimWebUI"
},
"author": {
"email": "[email protected]",
"name": "xBIM Ltd.",
"url": "https://www.xbim.net"
},
"version": "2.1.0",
"devDependencies": {
"@types/node": "18.11.14",
"@types/webgl2": "0.0.6",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^5.3.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^8.4.0",
"tslint": "^6.1.3",
"typedoc": "^0.23.22",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"docs": "typedoc --tsconfig ./tsconfig.json",
"start": "concurrently \"webpack serve --config webpack.dev.js --mode development\" \"webpack --watch --config webpack.worker.js \"",
"build": "webpack --config webpack.worker.js&&webpack --config webpack.prod.js&&node utilities/copy-package-json.js",
"build:dev": "webpack --config webpack.worker.js&&webpack --config webpack.dev.js"
},
"dependencies": {
"gl-matrix": "^3.4.3"
}
}