-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.26 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
46
47
48
49
50
51
52
53
54
55
{
"version": "0.0.7",
"name": "sanitize-email",
"description": "A directive developed with Vue.js that sanitizes the entered email address reactively.",
"type": "module",
"types": "./dist/sanitize-email.d.ts",
"files": [
"dist"
],
"main": "./dist/sanitize-email.umd.cjs",
"module": "./dist/sanitize-email.js",
"exports": {
".": {
"import": "./dist/sanitize-email.js",
"require": "./dist/sanitize-email.umd.cjs"
}
},
"private": false,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --declaration --emitDeclarationOnly"
},
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/tsconfig": "^0.1.3",
"npm-run-all": "^4.1.5",
"typescript": "~4.8.4",
"vite": "^4.1.4",
"vue-tsc": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mustafadalga/sanitize-email"
},
"keywords": [
"sanitize-email",
"email",
"sanitize",
"mail",
"email-validation",
"validation",
"email-checker",
"vuejs",
"vue3"
],
"author": "Mustafa Dalga",
"license": "MIT"
}