-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "gcode-viewer",
"version": "0.6.0",
"description": "A simple gcode viewer lib using three.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/aligator/gcode-viewer",
"author": "aligator <[email protected]>",
"license": "MIT",
"files": [
"dist/**/*",
"_bundles/**/*",
"dist-esm/**/*"
],
"scripts": {
"clean": "rm -rf _bundles dist dist-esm",
"build": "NODE_ENV=production && yarn clean && tsc && tsc -m es6 --outDir dist-esm && webpack",
"build:dev": "yarn clean && tsc && tsc -m es6 --outDir dist-esm && webpack",
"prepublish": "yarn build && yarn test",
"test": "jest"
},
"dependencies": {
"three": "^0.151.3"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/three": "^0.150.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"packageManager": "[email protected]"
}