-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
58
59
{
"name": "@erenkrt/vue3-pickr",
"author": {
"name": "Eren Kurt",
"email": "[email protected]",
"url": "https://erencan.dev"
},
"keywords": [
"vue",
"vue-pickr",
"vue-color-picker"
],
"description": "Vue Component of Pickr",
"private": false,
"version": "0.1.1",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "pnpm run build-lib && pnpm run build-types && pnpm build-playground",
"build-lib": "vite build",
"build-types": "vue-tsc --emitDeclarationOnly --declaration -p tsconfig.app.json",
"build-playground": "vite build -c vite.config.playground"
},
"dependencies": {
"@simonwep/pickr": "^1.9.1",
"vue": "^3.5.4"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@vitejs/plugin-vue": "^5.1.3",
"@vue/tsconfig": "^0.5.1",
"typescript": "^5.6.2",
"vite": "^5.4.3",
"vue-tsc": "^2.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/ErenKrt/vue3-picker.git"
},
"bugs": {
"url": "https://github.com/ErenKrt/vue3-picker/issues"
}
}