rage-framework/cli/package.json

37 lines
840 B
JSON
Raw Normal View History

2024-06-13 15:26:08 +00:00
{
2024-10-28 12:43:15 +00:00
"name": "@entityseven/create-rage-fw",
2024-10-28 13:20:51 +00:00
"version": "0.1.1",
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
"dependencies": {
"@inquirer/prompts": "^5.0.5",
2024-10-28 12:11:24 +00:00
"ky": "^1.7.2",
2024-06-13 18:42:36 +00:00
"chalk": "4.1.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
},
"description": "CLI to scaffold a template project for RageFW",
"keywords": [],
"author": "rilaxik",
"contributors": [{
"name": "SashaGoncharov19"
}],
"license": "MIT"
2024-06-13 15:26:08 +00:00
}