forked from omgovich/react-colorful
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) 路 1.7 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) 路 1.7 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@rareformlabs/vue-colorful",
"version": "1.0.0",
"description": "A tiny color picker component library for Vue 3 apps. Fast, accessible, dependency-free, and based on the react-colorful fork.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"LICENSE",
"ACKNOWLEDGMENTS",
"README.md",
"package.json"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "vite build --config vite.lib.config.ts",
"build:demo": "vite build",
"typecheck": "vue-tsc --noEmit -p tsconfig.json && vue-tsc --noEmit -p tsconfig.lib.json",
"test": "vitest run",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RareFormLabs/vue-colorful.git"
},
"keywords": [
"vue",
"vue3",
"color picker",
"colorpicker",
"hex",
"hsl",
"hsv",
"rgba",
"accessible",
"a11y"
],
"author": "RareFormLabs",
"license": "MIT",
"bugs": {
"url": "https://github.com/RareFormLabs/vue-colorful/issues"
},
"homepage": "https://rareformlabs.github.io/vue-colorful/",
"peerDependencies": {
"vue": "^3.5.0"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/test-utils": "^2.4.6",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4",
"vue": "^3.5.18",
"vue-tsc": "^2.2.12"
}
}