mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "create-better-t-stack",
|
|
"version": "0.7.0",
|
|
"description": "CLI tool to scaffold Better-T Stack projects",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"create-better-t-stack": "dist/index.js"
|
|
},
|
|
"keywords": [],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/better-t-stack/create-better-t-stack.git",
|
|
"directory": "apps/cli"
|
|
},
|
|
"homepage": "https://github.com/better-t-stack/create-better-t-stack/tree/main/apps/cli#readme",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"check-types": "tsc --noEmit",
|
|
"check": "biome check --write .",
|
|
"test": "vitest run",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"files": ["dist", "templates"],
|
|
"dependencies": {
|
|
"@clack/prompts": "^0.10.0",
|
|
"commander": "^13.1.0",
|
|
"degit": "^2.8.4",
|
|
"execa": "^8.0.1",
|
|
"fs-extra": "^11.2.0",
|
|
"gradient-string": "^3.0.0",
|
|
"picocolors": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/degit": "^2.8.6",
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/node": "^20.10.5",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|