-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
86 lines (86 loc) · 2.31 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
{
"name": "react-gcode-viewer",
"version": "2.2.4",
"description": "react component for visualizing GCodes 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.132.2",
"@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": "^2.75.6",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"storybook": "^6.5.9",
"three": "^0.141.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3",
"yarn-audit-fix": "^9.3.1"
},
"dependencies": {
"@react-three/fiber": "8.9.0",
"three-stdlib": "2.17.2"
},
"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",
"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-gcode-viewer.git"
},
"homepage": "https://github.com/GabrielMusat/react-gcode-viewer",
"maintainers": [
"Gabriel Musat (https://github.com/GabrielMusat)"
],
"keywords": [
"gcode",
"3d printing",
"printer",
"3d",
"three",
"threejs",
"react",
"render",
"renderer",
"viewer"
],
"packageManager": "yarn@3.2.1"
}