-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 2.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "three-dxf-loader",
"version": "5.2.0",
"description": "Cross platform DXF loader for three.js. Out of the box usable with react-three-fiber.",
"type": "module",
"main": "dist/three-dxf-loader.js",
"module": "src/Loader.js",
"scripts": {
"build-dev": "cross-env NODE_ENV=development webpack -c webpack.config.js",
"build": "cross-env NODE_ENV=production webpack -c webpack.config.js",
"prepublishOnly": "npm run build",
"start": "npm install && npm run build && cd sample && npm install && npm run start",
"start-dev": "npm install && npm run build-dev && cd sample && npm install && npm run start",
"lint": "eslint src --ext js --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier src/**/*.js --write && prettier sample/*.js --write"
},
"exports": {
".": {
"import": "./dist/three-dxf-loader.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/prolincur/three-dxf-loader"
},
"bugs": {
"url": "https://github.com/prolincur/three-dxf-loader/issues"
},
"homepage": "https://github.com/prolincur/three-dxf-loader",
"author": "Prolincur Technologies (prolincur.com) and GDS Storefront Estimating (gdsestimating.com)",
"contributors": [
"Sourabh Soni <https://www.prolincur.com>",
"Ben Zuill-Smith <[email protected]>"
],
"license": "MIT",
"files": [
"dist/*"
],
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"html-webpack-plugin": "^5.5.0",
"prettier": "^3.1.1",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"peerDependencies": {
"three": "0.160.0"
},
"keywords": [
"dxf",
"cad",
"viewer",
"threejs",
"react-three-fiber",
"r3f",
"three",
"loader",
"3d",
"2d",
"drawings"
],
"dependencies": {
"@dxfom/mtext": "^0.3.2",
"dxf-parser": "^1.1.2",
"js-base64": "^3.7.3",
"troika-three-text": "^0.48.0"
}
}