-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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
56
57
{
"name": "vue-dynamic-input-component",
"private": false,
"version": "0.1.5",
"license": "MIT",
"author": {
"name": "volkanfilazi",
"email": "volkanfilazi@hotmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com/volkanfilazi/vue-dynamic-input-component.git"
},
"type": "module",
"files": [
"dist",
"src",
"dist/style.css"
],
"main": "dist/vue-dynamic-input-component.js",
"module": "dist/vue-dynamic-input-component.js",
"unpkg": "dist/vue-dynamic-input-component.min.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/vue-dynamic-input-component.js",
"require": "./dist/vue-dynamic-input-component.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview"
},
"dependencies": {
"@iconify/vue": "^4.1.1",
"autoprefixer": "^10.4.14",
"vue": "^3.2.47"
},
"keywords": [
"vue",
"component",
"library",
"input",
"vue3",
"custom-input",
"input-modal"
],
"devDependencies": {
"@types/node": "^20.2.5",
"@vitejs/plugin-vue": "^4.1.0",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vue-tsc": "^1.4.2"
}
}