-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "@mergehez/vue-color-picker",
"version": "0.0.5",
"description": "a lightweight vue 3 color picker component",
"author": "mergehez <[email protected]>",
"license": "MIT",
"keywords": ["vue", "vue3", "component", "color", "picker", "color-picker", "lightweight"],
"repository": {
"type": "git",
"url": "git+https://github.com/mergehez/vue-color-picker.git"
},
"homepage": "https://github.com/mergehez/vue-color-picker",
"type": "module",
"main": "./dist/index.es.js",
"module": "./dist/index.es.js",
"typings": "./dist/index.es.d.ts",
"exports": {
".": {
"types": "./dist/index.es.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.es.js"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist/index.es.d.ts",
"dist/index.es.js",
"dist/styles.css"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc -b --declaration --emitDeclarationOnly && vite build && bun post-minify.mjs",
"preview": "vite preview"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.4.16",
"typescript": "~5.6.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vue-tsc": "^2.1.10"
},
"peerDependencies": {
"vue": "^3.5",
"tailwind-merge": "^2.5"
}
}