forked from WangShayne/vue3-signature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 842 Bytes
/
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
{
"name": "vue3-signature-exposed",
"description": "Electronic signature for Vue3",
"version": "0.1.18",
"author": "Shayne Wang <1614565666@qq.com>",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WangShayne/vue3-signature"
},
"files": [
"dist"
],
"main": "./dist/vue3-signature.umd.js",
"module": "./dist/vue3-signature.es.js",
"exports": {
".": {
"import": "./dist/vue3-signature.es.js",
"require": "./dist/vue3-signature.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"dependencies": {
"signature_pad": "^3.0.0-beta.4",
"vue": "^3.2.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.5",
"vite": "^2.1.0"
}
}