-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "react-2d-canvas",
"version": "0.7.0",
"description": "Draw text, images, and shapes on an HTML Canvas element using a declarative JSX syntax.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"source": "index.js",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "https://github.com/claudijo/react-2d-canvas.git"
},
"homepage": "https://github.com/claudijo/react-2d-canvas",
"bugs": {
"url": "https://github.com/claudijo/react-2d-canvas/issues"
},
"files": [
"dist",
"example.png"
],
"keywords": [
"canvas",
"2d",
"draw",
"react",
"jsx",
"shape",
"text",
"declarative"
],
"author": "Claudijo Borovic <claudijo.borovic@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "16.8.0 - 18.x",
"react-dom": "16.8.0 - 18.x"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.70.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4"
}
}