forked from zuramai/gradient-picker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.88 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
71
72
73
74
75
76
77
{
"name": "@ldrender/gradient-picker",
"version": "2.0.12",
"description": "A gradient picker component",
"type": "module",
"main": "dist/gradient-picker.js",
"module": "dist/gradient-picker.js",
"exports": {
".": {
"import": "./dist/gradient-picker.js",
"require": "./dist/gradient-picker.js",
"types": "./dist/gradient.d.ts"
},
"./dist/gradient-picker.css": "./dist/gradient-picker.css"
},
"files": [
"dist"
],
"keywords": [
"gradient",
"picker",
"color",
"ui",
"component",
"web",
"js",
"typescript",
"gradient picker",
"gradient picker js",
"css",
"design",
"front-end",
"customizable",
"interactive",
"graphics",
"rgb",
"hex",
"hsl",
"linear-gradient",
"radial-gradient",
"color-stops",
"named-colors",
"responsive",
"vanilla-js",
"es6",
"html5"
],
"author": "LDRender",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LDrender/gradient-picker.git",
"directory": "packages/gradient-picker"
},
"bugs": {
"url": "https://github.com/LDrender/gradient-picker/issues"
},
"homepage": "https://github.com/LDrender/gradient-picker#readme",
"scripts": {
"dev": "vite",
"build": "rollup -c rollup.config.ts --configPlugin rollup-plugin-typescript2 && node-sass src/gradient-picker.scss dist/gradient-picker.css",
"preview": "vite preview"
},
"devDependencies": {
"@liquid-js/rollup-plugin-closure-compiler": "^0.27.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"node-sass": "^9.0.0",
"rollup": "^4.18.0",
"rollup-plugin-minify-template-literals": "^1.1.7",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.77.6",
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}