forked from gdsestimating/three-dxf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
54
{
"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.ts",
"scripts": {
"build-dev": "tsc --outDir dist && webpack -c webpack.dev.js",
"build": "tsc --outDir dist && 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": "bzuillsmith@gmail.com"
},
"homepage": "https://github.com/gdsestimating/three-dxf",
"author": "GDS Storefront Estimating (gdsestimating.com)",
"contributors": [
"Ben Zuill-Smith <bzuillsmith@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"@types/three": "^0.132.2",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"dxf-parser": "^1.1.2",
"esbuild-loader": "^2.16.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-define-config": "^1.0.9",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"typescript": "^4.4.4",
"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"
}
}