-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.54 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
{
"name": "colors-helper-tools",
"version": "1.8.0",
"description": "help use color style ✨",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"types": "dist/types/index.d.ts",
"bin": {
"cht": "dist/cli.cjs",
"colors-helper-tools": "dist/cli.cjs"
},
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"build:tsc": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/citron03/colors-helper-tools.git"
},
"keywords": [
"color",
"css",
"hex",
"random"
],
"author": "citron03",
"license": "MIT",
"bugs": {
"url": "https://github.com/citron03/colors-helper-tools/issues"
},
"homepage": "https://github.com/citron03/colors-helper-tools#readme",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"rollup": "^4.18.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.3",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@inquirer/prompts": "^6.0.1",
"commander": "^12.1.0"
}
}