-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.5 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
65
66
67
68
69
70
71
{
"name": "@uiw/react-signature",
"version": "1.3.0",
"description": "A signature board component for react.",
"author": "Kenny Wong <wowohoo@qq.com>",
"homepage": "https://uiwjs.github.io/react-signature",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/react-signature.git"
},
"license": "MIT",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"exports": {
"./README.md": "./README.md",
"./package.json": "./package.json",
".": {
"import": "./esm/index.js",
"types": "./cjs/index.d.ts",
"require": "./cjs/index.js"
},
"./canvas": {
"import": "./esm/canvas/index.js",
"types": "./cjs/canvas/index.d.ts",
"require": "./cjs/canvas/index.js"
}
},
"files": [
"dist.css",
"dist",
"canvas.d.ts",
"cjs",
"esm",
"src"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"react-signature",
"react.js",
"react",
"signature",
"monorepo",
"uiw",
"uiw-react",
"react-component",
"component",
"components",
"ui",
"css",
"uikit",
"react-ui",
"framework"
],
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"perfect-freehand": "^1.2.0"
},
"devDependencies": {
"@babel/runtime": "^7.18.9",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}