-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "@docuseal/signature-maker-vue",
"version": "1.0.3",
"description": "Vue component for drawing signatures",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "Alex Turchyn <alex@docuseal.com>",
"license": "MIT",
"repository": "https://github.com/docusealco/signature-maker-vue",
"homepage": "https://github.com/docusealco/signature-maker-vue#readme",
"bugs": {
"url": "https://github.com/docusealco/signature-maker-vue/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"typescript": "^5.5.4",
"vue": "^3.5.6"
},
"keywords": [
"vue-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"
}
}