UNPKG

bluecodex

Version:

Turn repetitive dev tasks into CLI commands with Typescript

58 lines (57 loc) 1.36 kB
{ "name": "bluecodex", "type": "module", "version": "0.0.24", "description": "Turn repetitive dev tasks into CLI commands with Typescript", "repository": "https://github.com/bluecodex/bluecodex", "author": "Pedro Moreira <code@pedrosm.com>", "license": "MIT", "main": "src/out/main.ts", "files": [ "src" ], "bin": { "bluecodex": "src/bin/boot-with-bun.js" }, "keywords": [ "kb", "knowledge base", "toolkit", "tooling", "command", "cli", "scaffolding", "generator", "blue", "bluecodex" ], "scripts": { "typecheck": "tsc", "lint": "oxlint src/**/*", "test": "vitest", "format": "prettier ./src/**/* --write; prettier ./*.md --write", "postversion": "git push && git push --tags", "version": "git add package.json" }, "devDependencies": { "@total-typescript/ts-reset": "^0.6.1", "@trivago/prettier-plugin-sort-imports": "^5.2.2", "@types/bun": "^1.2.18", "@types/prompts": "^2.4.9", "@types/which": "^3.0.4", "oxlint": "^1.5.0", "prettier": "^3.6.2", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "dependencies": { "ansi-escapes": "^7.0.0", "bun": "^1.2.19", "chalk": "^5.4.1", "execa": "^9.6.0", "open": "^10.2.0", "prompts": "^2.4.2", "strip-ansi": "^7.1.0", "which": "^5.0.0" } }