rage-framework/cli/package.json

32 lines
678 B
JSON
Raw Normal View History

2024-06-13 15:26:08 +00:00
{
2024-06-13 18:16:52 +00:00
"name": "rage-fw",
2024-06-13 15:26:08 +00:00
"version": "0.0.23",
"bin": {
2024-06-13 18:16:52 +00:00
"rage-fw": "dist/index.js"
2024-06-13 15:26:08 +00:00
},
2024-06-13 18:16:52 +00:00
"main": "dist/index.js",
2024-06-13 15:26:08 +00:00
"scripts": {
2024-06-13 18:16:52 +00:00
"watch": "tsc -w",
"build": "tsup",
"start": "npx ./dist create"
2024-06-13 15:26:08 +00:00
},
"description": "CLI to scaffold a template project for RageFW",
"keywords": [],
"author": "rilaxik",
"license": "ISC",
"dependencies": {
2024-06-13 17:04:09 +00:00
"@inquirer/prompts": "^5.0.5",
2024-06-13 15:26:08 +00:00
"chalk": "4.1.2",
2024-06-13 17:04:09 +00:00
"git-clone": "^0.2.0",
2024-06-13 18:16:52 +00:00
"yargs": "^17.7.2",
"axios": "^1.7.2"
2024-06-13 15:26:08 +00:00
},
"devDependencies": {
2024-06-13 17:04:09 +00:00
"@types/git-clone": "^0.2.4",
2024-06-13 15:26:08 +00:00
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
}
}