-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 927 Bytes
/
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
{
"name": "@daybridge/color-system",
"version": "1.0.3",
"description": "Scripts and utilities for systematically generating color palettes informed by color science",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts'"
},
"bin": {
"daybridge-colors": "./lib/cli.js"
},
"author": "Daybridge Software Limited",
"license": "MIT",
"dependencies": {
"cli-color": "^2.0.3",
"colorjs.io": "^0.4.5",
"yargs": "^17.3.0"
},
"private": false,
"devDependencies": {
"@types/cli-color": "^2.0.2",
"@types/node": "^20.3.1",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^4.5.5"
}
}