This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.79 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
{
"name": "unified-3d-loader",
"version": "1.1.5",
"description": "Unified 3D file loader. Intended for use as a frontend for triangle-based 3D processing.",
"type": "module",
"types": "dist/es/index.d.ts",
"files": [
"dist/*"
],
"exports": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"build": "rollup -c",
"coverage": "nyc --reporter=lcov npm run test",
"lint": "eslint . --ext .ts",
"test": "mocha -r ts-node/register --colors --exit --timeout 60000 src/**/*.spec.ts",
"watch": "rollup -c -w"
},
"dependencies": {
"earcut": "^2.2.2",
"fast-xml-parser": "^3.17.4",
"jszip": "^3.5.0",
"lodash": "^4.17.20",
"mathjs": "^7.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/chai": "^4.2.13",
"@types/earcut": "^2.1.1",
"@types/lodash": "^4.14.162",
"@types/mathjs": "^6.0.5",
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"eslint": "^7.11.0",
"events": "^3.2.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"rollup": "^2.30.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cloud-CNC/unified-3d-loader.git"
},
"keywords": [
"3mf",
"amf",
"ply",
"obj",
"stl",
"file",
"loader",
"parser",
"cloud-cnc"
],
"author": "Cloud-CNC",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cloud-CNC/unified-3d-loader/issues"
},
"homepage": "https://github.com/Cloud-CNC/unified-3d-loader#readme"
}