node-ts-scaffold
Version:
CLI tool to scaffold TypeScript projects with ESLint and Prettier
54 lines (53 loc) • 1.11 kB
JSON
{
"name": "node-ts-scaffold",
"version": "1.0.1",
"description": "CLI tool to scaffold TypeScript projects with ESLint and Prettier",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"node-ts-scaffold": "build/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"test": "tsc --noEmit && eslint src/**/*.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript",
"cli",
"scaffold",
"project",
"eslint",
"prettier",
"vitest"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/prompts": "^2.4.9",
"chalk": "^5.3.0",
"ora": "^8.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"prettier": "^3.1.0",
"tsx": "^4.6.0",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"build",
"README.md",
"src",
"tsconfig.json",
"LICENSE"
]
}