-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 876 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
35
36
37
38
39
40
41
42
43
44
{
"name": "tw-color-picker-cli",
"private": true,
"version": "1.0.0",
"description": "Color class picker for tailwind css.",
"type": "module",
"files": [
"bin"
],
"bin": {
"tcpc": "./bin/index.js"
},
"scripts": {
"release": "release-it",
"prepare": "husky",
"pretty": "prettier --write bin"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run pretty"
]
},
"keywords": [
"tw-color-picker-cli",
"javascript",
"templates",
"tcpc"
],
"license": "MIT",
"devDependencies": {
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4"
},
"dependencies": {
"@jswork/next": "^1.2.2",
"@jswork/next-deep-assign": "^1.0.4",
"clipboardy": "^4.0.0",
"color-delta-e": "^1.3.0",
"commander": "^11.1.0",
"safe-flat": "^2.1.0",
"tailwindcss": "^3.4.3"
}
}