-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1021 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
45
46
47
48
49
{
"name": "sky-cli",
"description": "An cli tool to help devs",
"version": "1.0.0",
"license": "UNLICENSED",
"type": "module",
"bin": {
"sky-cli": "index.js",
"start": "index.js"
},
"author": {
"name": "Leonardo Ennes",
"email": "[email protected]",
"url": "https://github.com/LeonardoEnnes/sky-cli"
},
"keywords": [
"sky-cli",
"Leonardo Ennes"
],
"files": [
"index.js",
"utils"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"axios": "^1.7.7",
"chalk": "^5.3.0",
"cli-alerts": "^2.0.0",
"cli-handle-error": "^4.4.0",
"cli-handle-unhandled": "^1.1.1",
"cli-meow-help": "^4.0.0",
"cli-welcome": "^3.0.0",
"commander": "^12.1.0",
"csv": "^6.3.10",
"diff": "^7.0.0",
"figlet": "^1.7.0",
"get-package-json-file": "^2.0.0",
"inquirer": "^9.3.6",
"inquirer-autocomplete-prompt": "^3.0.1",
"json2csv": "^6.0.0-alpha.2",
"meow": "^13.2.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"prettier": "^3.3.3"
}
}