-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "color-palettes",
"version": "0.0.1",
"description": "Research and data on popular bespoke color palettes",
"type": "module",
"types": "./types",
"scripts": {
"build:data": "node _build/summary.js",
"build:html": "npx @11ty/eleventy --config=_build/eleventy.js",
"watch:html": "npx @11ty/eleventy --config=_build/eleventy.js --serve",
"build": "run-s build:*",
"watch": "run-p watch:*",
"prepack": "npm run build",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/color-js/palettes.git"
},
"keywords": [
"color",
"color palettes",
"design systems"
],
"contributors": [
"Lea Verou",
"Chris Lilley"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/color-js/palettes/issues"
},
"homepage": "https://palettes.colorjs.io",
"devDependencies": {
"@11ty/eleventy": "3.0.0-alpha.10",
"@stylistic/eslint-plugin": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"json5": "^2.2.3",
"npm-run-all": "^4.1.5",
"release-it": "^17.1.1"
},
"dependencies": {
"color-elements": "^0.0.2",
"colorjs.io": "latest"
}
}