rage-framework/cli/package.json

36 lines
833 B
JSON
Raw Permalink Normal View History

2024-06-13 15:26:08 +00:00
{
2024-06-13 18:50:40 +00:00
"name": "create-rage-fw",
2024-06-15 13:47:36 +00:00
"version": "0.1.0",
2024-06-13 18:42:36 +00:00
"bin": {
"rage-fw": "dist/index.js"
},
"main": "dist/index.js",
"scripts": {
"watch": "tsc -w",
"build": "tsup",
"start": "npx ./dist create"
},
2024-06-13 19:03:27 +00:00
"files": [
2024-06-15 13:47:14 +00:00
"dist/**/*",
"readme.md"
2024-06-13 19:03:27 +00:00
],
2024-06-13 18:42:36 +00:00
"description": "CLI to scaffold a template project for RageFW",
"keywords": [],
"author": "rilaxik",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^5.0.5",
"axios": "^1.7.2",
"chalk": "4.1.2",
"git-clone": "^0.2.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/git-clone": "^0.2.4",
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
}
2024-06-13 15:26:08 +00:00
}