-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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/vue",
"version": "1.0.46",
"description": "DocuSeal Vue components to integrate documents signing process into apps. ✍️",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "DocuSeal <[email protected]>",
"license": "MIT",
"homepage": "https://www.docuseal.com/docs/embedded",
"bugs": {
"url": "https://github.com/docusealco/docuseal-vue/issues"
},
"repository": "https://github.com/docusealco/docuseal-vue",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"prettier": "^3.0.2",
"typescript": "^5.2.2",
"vue": "^3.3.4"
},
"keywords": [
"vue",
"esignature",
"document signing",
"docuseal"
],
"files": [
"dist"
],
"scripts": {
"build": "node esbuild.config.js && tsc --emitDeclarationOnly --outDir dist",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
}
}