UNPKG

launch-express

Version:

CLI tool to setup a new Launch Express project

69 lines (68 loc) 1.69 kB
{ "name": "launch-express", "version": "2.1.0", "description": "CLI tool to setup a new Launch Express project", "author": "Launch Express <hello@launch-express.com> (https://launch-express.com)", "keywords": [ "launch-express", "launch-express-cli", "boilerplate", "nextjs", "nextjs-starterkit", "nextjs-boilerplate", "nextjs-starter", "ai", "cli" ], "scripts": { "semantic-release": "semantic-release", "build": "tsc", "test:local": "npm run build && npm install -g . && npm unlink launch-express && npm link launch-express", "dev": "tsc --watch", "clean": "rm -rf dist", "prebuild": "npm run clean", "format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\"" }, "type": "module", "bin": { "launch-express": "./dist/index.js" }, "dependencies": { "@clack/prompts": "^0.10.1", "chalk": "^5.3.0", "dedent": "^1.5.3" }, "devDependencies": { "@types/node": "^22.14.1", "lint-staged": "^15.5.1", "prettier": "^3.5.3", "semantic-release": "^24.2.3", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "lint-staged": { "*.{ts,js}": "prettier --write" }, "engines": { "node": ">=20" }, "files": [ "dist", "README.md", "package.json" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/Launch-Express/CLI.git" }, "license": "ISC", "bugs": { "url": "https://github.com/Launch-Express/CLI/issues" }, "main": "dist/index.js", "homepage": "https://launch-express.com" }