forked from embiem/react-canvas-draw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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": "react-canvas-draw",
"description": "A simple yet powerful canvas-drawing component for React.",
"private": false,
"version": "1.3.1",
"type": "module",
"main": "dist/react-canvas-draw.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc -b ./tsconfig.lib.json && vite build",
"pack": "npm pack .",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"catenary-curve": "^2.0.2",
"lazy-brush": "^2.0.2"
},
"peerDependencies": {
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"expect": "^30.2.0",
"globals": "^16.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.45.0",
"vite": "^7.1.7",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2"
},
"sideEffects": [
"**/*.css"
],
"author": {
"name": "Martin Beierling",
"email": "mbeierling@gmail.com"
},
"homepage": "https://embiem.github.io/react-canvas-draw/",
"license": "MIT",
"repository": "https://github.com/embiem/react-canvas-draw",
"bugs": {
"url": "https://github.com/embiem/react-canvas-draw/issues"
},
"keywords": [
"react-component",
"react",
"reactjs",
"canvas",
"drawing"
]
}