UNPKG

create-ersn-app

Version:

A CLI for creating applications with personal starter templates I've set up. All templates are stored in separate repositories for easy cloning and use. More templates will be added over time as needed. Feel free to use it if it fits your needs!

72 lines (71 loc) 2.19 kB
{ "name": "create-ersn-app", "type": "module", "version": "1.1.0", "packageManager": "pnpm@10.6.4+sha512.da3d715bfd22a9a105e6e8088cfc7826699332ded60c423b14ec613a185f1602206702ff0fe4c438cb15c979081ce4cb02568e364b15174503a63c7a8e2a5f6c", "description": "A CLI for creating applications with personal starter templates I've set up. All templates are stored in separate repositories for easy cloning and use. More templates will be added over time as needed. Feel free to use it if it fits your needs!", "author": { "name": "Ersan Karimi", "url": "https://ersankarimi.vercell.app" }, "license": "MIT", "homepage": "https://github.com/ersankarimi/create-ersn-app#readme", "repository": { "type": "git", "url": "git+https://github.com/ersankarimi/create-ersn-app.git" }, "bugs": { "url": "https://github.com/ersankarimi/create-ersn-app/issues" }, "keywords": [ "cli", "starter-template", "scaffolding", "boilerplate", "personal-config", "create ersn app" ], "publishConfig": { "access": "public" }, "main": "dist/index.cjs", "bin": { "create-ersn-app": "dist/index.cjs" }, "files": [ "dist" ], "engines": { "node": ">=20.19.0" }, "scripts": { "lint": "eslint", "lint:fix": "eslint --fix", "start": "node dist/index.cjs", "build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.cjs --format=cjs --minify", "build:start": "pnpm run build && pnpm run start", "dev:esbuild": "pnpm run build --watch", "dev:node": "node --watch dist/index.cjs", "dev:tsc": "tsc --watch --preserveWatchOutput", "dev": "run-p dev:*", "semantic-release": "semantic-release" }, "dependencies": { "@clack/prompts": "^0.10.0", "chalk": "^5.4.1", "degit": "^2.8.4", "filenamify": "^6.0.0", "gradient-string": "^3.0.0", "valid-filename": "^4.0.0" }, "devDependencies": { "@antfu/eslint-config": "^4.10.1", "@types/degit": "^2.8.6", "@types/node": "^22.13.10", "esbuild": "^0.25.1", "eslint": "^9.22.0", "npm-run-all": "^4.1.5", "semantic-release": "^24.2.3", "typescript": "^5.8.2" } }