forked from ieskudero/three-dxf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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": "three-dxf-viewer",
"version": "1.0.20",
"description": "DXF viewer using ThreeJS",
"main": "dist/main.js",
"module": "dist/main.js",
"files": [ "dist" ],
"scripts": {
"dev": "vite -c vite.dev.config.js",
"build": "vite -c vite.prod.config.js build",
"page": "vite -c vite.page.config.js build",
"docs": "node jsdoc",
"lint": "eslint --fix --ext .js,.jsx ."
},
"repository": {
"type": "git",
"url": "[email protected]:ieskudero/three-dxf-viewer.git"
},
"keywords": ["dxf", "three", "viewer"],
"author": "Ibon Eskudero",
"license": "MIT",
"bugs": {
"url": "https://github.com/ieskudero/three-dxf-viewer/issues"
},
"homepage": "https://ieskudero.github.io/three-dxf-viewer/",
"devDependencies": {
"vite": "4.3.9",
"vite-plugin-html": "3.2.0",
"vite-plugin-static-copy":"0.16.0",
"jsdoc-to-markdown": "8.0.0",
"eslint": "8.42.0",
"eslint-config-recommended": "4.1.0",
"eslint-plugin-import": "2.27.5",
"lil-gui": "0.18.2"
},
"dependencies": {
"dxf": "5.0.1",
"three": "0.153.0"
}
}