-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "@docuseal/signature-maker-react",
"version": "1.0.2",
"description": "React component for drawing signatures",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "Alex Turchyn <[email protected]>",
"license": "MIT",
"repository": "https://github.com/docusealco/signature-maker-react",
"homepage": "https://github.com/docusealco/signature-maker-react#readme",
"bugs": {
"url": "https://github.com/docusealco/signature-maker-react/issues"
},
"devDependencies": {
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"react": "^18.3.1",
"typescript": "^5.5.4"
},
"keywords": [
"react-signature",
"signature",
"signature-drawing"
],
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"scripts": {
"build": "node esbuild.config.js && tsc --emitDeclarationOnly --outDir dist",
"lint": "eslint src/**/*.ts --fix"
},
"dependencies": {
"@docuseal/signature-maker-js": "^1.0.0"
}
}