57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
{
|
|
"name": "@fischerx/cli",
|
|
"version": "0.1.0",
|
|
"description": "FischerX CLI - A modern full-stack development toolkit",
|
|
"author": "FischerX Team",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"fischerx": "dist/index.js",
|
|
"fx": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"templates"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"lint": "eslint src --ext ts,tsx",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest",
|
|
"test:run": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.0.0",
|
|
"execa": "^8.0.1",
|
|
"fs-extra": "^11.2.0",
|
|
"inquirer": "^9.2.15",
|
|
"ora": "^8.0.1",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/inquirer": "^9.0.7",
|
|
"@types/node": "^20.11.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.3.0",
|
|
"vitest": "^1.2.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"keywords": [
|
|
"fischerx",
|
|
"cli",
|
|
"full-stack",
|
|
"monorepo",
|
|
"generator"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/fischerx/fischerx.git"
|
|
}
|
|
}
|