-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "palex",
"version": "1.0.0",
"description": "Simple package to help you create color palettes",
"author": "EDM115 <dev@edm115.eu.org> (https://edm115.dev)",
"homepage": "https://github.com/EDM115/palex",
"type": "module",
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.me/8EDM115"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/edm115"
},
{
"type": "crypto",
"url": "https://walad.link/edm115"
},
{
"type": "github",
"url": "https://github.com/sponsors/EDM115"
},
{
"type": "telegram",
"url": "https://t.me/EDM115bots/698"
}
],
"main": "dist/palex.cjs",
"module": "dist/palex.js",
"files": [
"/dist",
"/package.json",
"/README.md"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"publish:github": "npm publish --registry https://npm.pkg.github.com/",
"test": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EDM115/palex.git"
},
"keywords": [
"color",
"palette",
"generator"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EDM115/palex/issues",
"email": "palex@edm115.eu.org"
},
"dependencies": {
"chroma-js": "^2.4.2",
"color-blind": "^0.1.3"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@vitejs/plugin-vue": "^5.0.4",
"cross-env": "^7.0.3",
"rimraf": "^5.0.5",
"rollup": "^4.10.0",
"rollup-plugin-visualizer": "^5.12.0",
"vite": "^5.1.2",
"vite-plugin-commonjs": "^0.10.1",
"vue": "^3.4.19"
},
"bundleDependencies": [
"chroma-js",
"color-blind"
]
}