-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.33 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
{
"name": "uncolur",
"version": "0.0.7",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"uncolur": "./bin/cli.mjs"
},
"files": [
"bin",
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test:cli": "node ./bin/cli.mjs --color '#ff0'",
"lint": "tsc --noEmit",
"start": "esno play/index.ts",
"test": "vitest",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"release": "bumpp -r && npm publish"
},
"author": "hunghg255",
"devDependencies": {
"@types/node": "^18.17.12",
"bumpp": "^9.2.0",
"esno": "^0.16.3",
"git-scm-hooks": "^0.0.7",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"verify-commit-msg": "^0.0.10",
"vitest": "^0.34.4"
},
"dependencies": {
"@ctrl/tinycolor": "^4.0.2",
"unbuild": "^1.2.1",
"unprompts": "^1.0.11"
},
"keywords": [
"colors",
"generate",
"tailwindcss"
],
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"repository": "https://github.com/hunghg255/uncolur.git"
}