-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
109 lines (109 loc) · 3.04 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-regl",
"version": "5.3.0",
"description": "A custom React Fiber reconciler renderer for regl webGL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^16.13.0"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevzettler/react-regl.git"
},
"keywords": [
"WebGL",
"regl",
"react",
"GLSL",
"glslify",
"scene",
"shaders",
"graph"
],
"author": "kevzettler",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevzettler/react-regl/issues"
},
"homepage": "https://github.com/kevzettler/react-regl#readme",
"scripts": {
"prepublish": "yarn build",
"build": "yarn clean && NODE_ENV=production tsc && mkdir ./dist/types && cp ./src/types/deferred-regl.d.ts ./dist/types/",
"clean": "rimraf ./dist",
"watch": "NODE_ENV=production babel src --watch -d dist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir ./docs"
},
"workspaces": [
"react-regl-test-app"
],
"dependencies": {
"deferred-regl": "https://github.com/kevzettler/deferred-regl#a6dbc9dd188f433a026e70223f8d2fe945fcb377",
"fbjs": "^3.0.0",
"prop-types": "^15.7.2",
"react-reconciler": "0.29.0",
"regl": "2.1.0",
"scheduler": "^0.23.0",
"webpack": "5.75.0"
},
"peerDependencies": {
"react": "18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-options": "^5.3.21",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/cli": "^6.5.16",
"@storybook/react": "^6.5.16",
"@types/pngjs": "^3.4.2",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.27",
"@types/react-reconciler": "^0.18.0",
"@types/scheduler": "^0.16.1",
"@types/seedrandom": "^2.4.28",
"angle-normals": "^1.0.0",
"arraybuffer-loader": "^1.0.8",
"babel-loader": "^8.2.2",
"baboon-image": "^2.1.0",
"buffer": "^6.0.3",
"bunny": "^1.0.1",
"canvas-fit": "^1.5.0",
"canvas-orbit-camera": "^1.0.2",
"getusermedia": "^2.0.1",
"gl": "^4.9.0",
"gl-context": "^0.1.1",
"gl-matrix": "^3.3.0",
"hsv2rgb": "^1.1.0",
"mouse-change": "^1.4.0",
"mouse-wheel": "^1.2.0",
"pngjs": "^6.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"requestidlecallback": "^0.3.0",
"rimraf": "^4.1.2",
"seedrandom": "^3.0.5",
"typescript": "4.9.4",
"vectorize-text": "^3.2.1"
},
"resolutions": {
"react-regl": "portal:/Users/kevzettler/code/react-regl"
},
"packageManager": "yarn@3.3.1"
}