-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.36 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.36 KB
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
{
"name": "@bucky24/react-canvas",
"version": "3.2.0",
"description": "A library of components that can be used to manipulate a canvas using JSX embedded in react.",
"main": "build/index.js",
"scripts": {
"clean": "rm -rf build",
"build": "babel src --out-dir build",
"basicExample": "webpack-dev-server --config ./examples/basicExample/webpack.config.js",
"resizeExample": "webpack-dev-server --config ./examples/resizeExample/webpack.config.js",
"eventExample": "webpack-dev-server --config ./examples/eventExample/webpack.config.js",
"imageExample": "webpack-dev-server --config ./examples/imageExample/webpack.config.js",
"extendingExample": "webpack-dev-server --config ./examples/extendingExample/webpack.config.js",
"overlapExample": "webpack-dev-server --config ./examples/overlapExample/webpack.config.js",
"clipExample": "webpack-dev-server --config ./examples/clipExample/webpack.config.js",
"renderExample": "webpack-dev-server --config ./examples/renderExample/webpack.config.js",
"blendExample": "webpack-dev-server --config ./examples/blendExample/webpack.config.js",
"compoundExample": "webpack-dev-server --config ./examples/compoundExample/webpack.config.js",
"animationExample": "webpack-dev-server --config ./examples/animationExample/webpack.config.js",
"autoCompoundExample": "webpack-dev-server --config ./examples/autoCompoundExample/webpack.config.js",
"prepublishOnly": "npm run build"
},
"files": [
"build"
],
"author": "Bucky24",
"license": "ISC",
"homepage": "https://github.com/Bucky24/react-canvas#readme",
"devDependencies": {
"@babel/cli": "7.16.7",
"@babel/core": "7.4.0",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-transform-react-jsx": "7.3.0",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "^7.17.2",
"babel-loader": "8.3.0",
"css-loader": "6.5.1",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"image-webpack-loader": "8.1.0",
"react": "18.2.0",
"style-loader": "3.3.1",
"webpack": "5.105.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "5.2.1"
},
"keywords": [
"react",
"canvas",
"react-canvas",
"drawing",
"html5"
],
"dependencies": {
"prop-types": "15.7.2",
"react-dom": "18.2.0",
"react-fast-compare": "3.2.0"
},
"peerDependencies": {
"react": "18.x.x"
}
}