UNPKG

devboot

Version:

Zero-config dev environment setup for modern web projects

102 lines 2.35 kB
{ "name": "devboot", "version": "0.2.3", "description": "Zero-config dev environment setup for modern web projects", "keywords": [ "cli", "dev-tools", "devboot", "eslint", "eslint-v9", "flat-config", "typescript", "prettier", "editorconfig", "setup", "configuration", "development", "dx", "developer-experience", "tooling", "automation", "scaffold", "boilerplate", "ci-cd", "non-interactive", "smart-detection", "format-detection" ], "homepage": "https://github.com/joseph0926/devboot#readme", "bugs": { "url": "https://github.com/joseph0926/devboot/issues" }, "repository": { "type": "git", "url": "git+https://github.com/joseph0926/devboot.git" }, "license": "MIT", "author": { "name": "joseph0926", "url": "https://github.com/joseph0926" }, "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "devboot": "./dist/cli.js" }, "files": [ "dist", "README.md", "LICENCE" ], "scripts": { "build": "NODE_ENV=production tsup", "build:dev": "tsup", "dev": "tsup --watch", "cli": "tsx src/cli/index.ts", "test": "vitest", "test:coverage": "vitest run --coverage", "lint": "eslint . --ext .ts,.tsx", "format": "prettier --write .", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run typecheck && npm run build", "prepack": "npm run build", "lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix" }, "devDependencies": { "@eslint/js": "^9.0.0", "@types/fs-extra": "^11.0.4", "@types/node": "^24.1.0", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "@vitest/coverage-v8": "^3.2.4", "eslint": "^9.0.0", "globals": "^15.0.0", "prettier": "^3.4.2", "tsup": "^8.5.0", "tsx": "^4.20.3", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "engines": { "node": ">=22" }, "publishConfig": { "access": "public" }, "packageManager": "pnpm@10.13.1", "dependencies": { "@clack/prompts": "^0.11.0", "chalk": "^5.4.1", "commander": "^14.0.0", "fs-extra": "^11.3.0", "ora": "^8.2.0" } }