-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 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
72
73
74
75
76
77
78
79
80
81
{
"name": "three-svg-renderer",
"description": "An experimental three.js SVG renderer written in Typescript to render 3D scenes as Vector Graphics.",
"keywords": [
"svg",
"renderer",
"three.js",
"vector-graphics",
"3D"
],
"version": "1.0.4",
"license": "GPLV3",
"author": {
"name": "Axel Antoine",
"email": "[email protected]",
"url": "http://axantoine.com"
},
"type": "module",
"main": "build/index.umd.js",
"module": "build/index.esm.js",
"types": "build/types/index.d.ts",
"files": [
"build",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LokiResearch/three-svg-renderer.git"
},
"scripts": {
"build": "rollup -c",
"build-examples": "rollup -c --environment examples",
"build-doc": "typedoc src/index.ts",
"dev": "rollup -cw",
"dev-examples": "rollup -cw --environment examples",
"test": "jest",
"lint": "eslint src examples"
},
"peerDependencies": {
"three": ">= 0.141.0"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.1.2",
"@svgdotjs/svg.topath.js": "^2.0.3",
"arrangement-2d-js": "github:LokiResearch/arrangement-2d-js",
"fast-triangle-triangle-intersection": "^1.0.7",
"flatbush": "^4.0.0",
"isect": "^3.0.1",
"opencv-ts": "^1.3.6",
"three-mesh-bvh": "^0.5.14",
"three-mesh-halfedge": "^1.0.3",
"xml-formatter": "^2.6.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/dat.gui": "^0.7.7",
"@types/eslint": "^8.4.6",
"@types/estree": "^1.0.0",
"@types/jest": "^28.1.6",
"@types/three": "^0.141.0",
"@types/throttle-debounce": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"dat.gui": "^0.7.9",
"eslint": "^8.25.0",
"eslint-plugin-jest": "^26.6.0",
"jest": "^28.1.3",
"rollup": "^2.77.0",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-node-externals": "^4.1.1",
"three-spritetext": "^1.6.5",
"throttle-debounce": "^5.0.0",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"tslib": "^2.4.0",
"typedoc": "^0.23.17",
"typescript": "^4.7.4"
}
}