forked from gabotechs/react-stl-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.35 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
82
83
84
85
86
87
{
"name": "react-stl-viewer",
"version": "2.2.5",
"description": "react component for visualizing 3d models in the browser using three.js",
"author": "Gabriel Musat",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/react": "^6.5.9",
"@types/jest": "^28.1.1",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/three": "^0.133.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"babel-loader": "^8.2.5",
"eslint": "^8.25.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.0",
"jest": "^28.1.1",
"postcss": "^8.4.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.2.5",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"three": "^0.133.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3"
},
"dependencies": {
"@react-three/fiber": "8.9.1",
"three-stdlib": "2.17.2",
"three-subdivide": "^1.1.5"
},
"peerDependencies": {
"react": ">=18.0",
"react-dom": ">=18.0",
"three": ">=0.133"
},
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc && rollup -c",
"test": "jest --passWithNoTests",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint src"
},
"files": [
"lib",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GabrielMusat/react-stl-viewer.git"
},
"homepage": "https://github.com/GabrielMusat/react-stl-viewer",
"maintainers": [
"Gabriel Musat (https://github.com/GabrielMusat)"
],
"keywords": [
"stl",
"3d",
"three",
"threejs",
"react",
"obj",
"model",
"3dmodel",
"render",
"renderer",
"viewer"
],
"packageManager": "[email protected]"
}