-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "@techie04/vue3-phonenumber-input",
"version": "0.0.8",
"description": "vue3 phone number input with country dropdown",
"main": "dist/vue3-phone-input.umd.js",
"module": "dist/vue3-phone-input.esm.js",
"types": "dist/index.d.ts",
"style": "dist/css/vue3-phone-input.css",
"repository": {
"type": "git",
"url": "git+https://github.com/techieoriname/vue3-Phone-Number-Input.git"
},
"bugs": {
"url": "https://github.com/techieoriname/vue3-Phone-Number-Input/issues"
},
"keywords": [
"phone number",
"phone",
"input",
"vue3",
"vue3 input",
"country input"
],
"author": "Techie Oriname",
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:css": "tailwindcss -i src/style.css -o ./dist/css/vue3-phone-input.css --minify",
"build:all": "yarn build && yarn build:css",
"build:watch": "vite build --watch",
"preview": "vite preview"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"path": "^0.12.7",
"tailwindcss": "^3.3.2",
"typescript": "^5.5.4",
"vite": "^4.3.9",
"vite-plugin-dts": "^4.2.1",
"vue-tsc": "^2.1.6"
},
"dependencies": {
"libphonenumber-js": "^1.10.30",
"vue": "^3.3.4"
},
"peerDependencies": {
"vue": "^3.3.4"
}
}