-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 907 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
{
"name": "react-utility-belt",
"type": "module",
"version": "1.0.4",
"description": "A comprehensive CLI tool for seamless migrations in React projects.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Owbird/React-Utility-Belt"
},
"keywords": [
"cli",
"react"
],
"bin": {
"react-utility-belt": "dist/index.js"
},
"scripts": {
"start": "npx tsc && node dist/index.js",
"build": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Owbird",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^4.3.1",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"figlet": "^1.7.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^20.11.30",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.4.3"
}
}