-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
57 lines (57 loc) · 2.07 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
{
"name": "shadertoy-react",
"version": "1.1.2",
"description": "React component that let's you easily render a shader on a canvas by simply passing a fragment shader, following the shadertoy syntax, and logic, so you don't have to worry about passing basic uniforms, or setting up the webgl scene to do that, all the work is being done for you.",
"main": "lib/shadertoy-react.min.js",
"homepage": "https://mvilledieu.github.io/shadertoy-react/",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --config webpack.common.js",
"transpile": "webpack --mode production --config webpack.lib.js",
"prepublishOnly": "rm -rf lib && mkdir lib && npm run transpile",
"build": "webpack --mode production --config webpack.common.js",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy",
"publish-npm": "npm run prepublishOnly && npm version patch && npm publish --registry https://registry.npmjs.org"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/mvilledieu/shadertoy-react"
},
"author": "Morgan Villedieu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"keywords": [
"shadertoy",
"shader",
"glsl",
"webgl",
"react"
]
}