-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "@wh-chen/color-picker",
"private": false,
"version": "0.0.2",
"main": "./dist/color-picker.umd.cjs",
"module": "./dist/color-picker.js",
"exports": {
"./dist/style.css": "./dist/style.css",
".": {
"import": "./dist/color-picker.js",
"require": "./dist/color-picker.umd.cjs"
}
},
"files": [
"package.json",
"license",
"README.md",
"dist"
],
"description": "基于vue3实现的通用颜色选择器",
"keywords": [
"color-picker",
"@wh-chen/color-picker",
"vue3-color-picker",
"vue-color-picker"
],
"repository": {
"type": "git",
"url": "https://github.com/chenweihuan/color-picker.git"
},
"author": "chenweihuan",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:examples": "vite build --config examples.vite.config.js",
"preview": "vite preview"
},
"dependencies": {
"lodash-es": "^4.17.21",
"tinycolor2": "^1.6.0",
"vue": "^3.2.47"
},
"devDependencies": {
"@types/lodash-es": "^4.17.7",
"@vitejs/plugin-vue": "^4.1.0",
"less": "^4.1.3",
"vite": "^4.2.0",
"vite-plugin-style-inject": "^0.0.1"
}
}