-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 KB
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
58
59
{
"name": "vue-smooth-picker",
"version": "1.0.3",
"type": "module",
"description": "A smooth picker component for Vue 3",
"author": "Salam Hiyali",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hiyali/vue-smooth-picker.git"
},
"files": [
"dist"
],
"main": "./dist/vue-smooth-picker.umd.cjs",
"module": "./dist/vue-smooth-picker.js",
"unpkg": "./dist/vue-smooth-picker.umd.cjs",
"exports": {
".": {
"import": "./dist/vue-smooth-picker.js",
"require": "./dist/vue-smooth-picker.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"tag": "next"
},
"scripts": {
"dev": "vite serve",
"build": "vite build",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.2.5",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/runtime-core": "^3.4.15",
"@vue/runtime-dom": "^3.4.15",
"typescript": "^5.0.2",
"vite": "^5.0.12",
"vue-tsc": "^1.8.27",
"stylus": "^0.54.5",
"vue": "^3.4.15"
},
"keywords": [
"vue-smooth-picker",
"Vue3",
"picker",
"smooth-picker",
"datetime picker",
"vue3-component",
"vue3-picker"
]
}