-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
41
42
43
44
45
{
"name": "vue3-signature",
"description": "Electronic signature for Vue3",
"version": "0.2.5",
"author": "Shayne Wang <1614565666@qq.com>",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WangShayne/vue3-signature"
},
"files": [
"dist",
"types",
"Schema.png"
],
"main": "./dist/vue3-signature.umd.js",
"module": "./dist/vue3-signature.es.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./dist/vue3-signature.es.js",
"require": "./dist/vue3-signature.umd.js",
"types": "./types/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && yarn build:tsc",
"build:tsc": "vue-tsc --emitDeclarationOnly",
"serve": "vite preview"
},
"dependencies": {
"default-passive-events": "^2.0.0",
"signature_pad": "^3.0.0-beta.4",
"vue": "^3.2.37"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.5",
"typescript": "^4.8.2",
"vite": "^2.1.0",
"vue-tsc": "^0.40.8"
}
}