-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "three-dxf",
"version": "1.3.1",
"description": "A dxf viewer for the browser using three.js.",
"main": "dist/three-dxf.js",
"module": "src/index.js",
"scripts": {
"build-dev": "webpack -c webpack.dev.js",
"build": "webpack -c webpack.prod.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/gdsestimating/three-dxf"
},
"bugs": {
"url": "https://github.com/gdsestimating/three-dxf/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/gdsestimating/three-dxf",
"author": "GDS Storefront Estimating (gdsestimating.com)",
"contributors": [
"Ben Zuill-Smith <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"three": "0.x.x"
},
"keywords": [
"dxf",
"cad",
"viewer"
],
"dependencies": {
"@dxfom/mtext": "^0.3.2",
"troika-three-text": "^0.42.0"
}
}