UNPKG

@tachui/cli

Version:

Tacho CLI - Comprehensive developer tooling for tachUI

68 lines 1.58 kB
{ "name": "@tachui/cli", "version": "0.8.1-alpha", "description": "Tacho CLI - Comprehensive developer tooling for tachUI", "homepage": "https://tachui.dev/", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "tacho": "./bin/tacho.js" }, "files": [ "dist", "bin", "templates" ], "dependencies": { "commander": "^11.0.0", "chalk": "^5.0.0", "ora": "^7.0.0", "prompts": "^2.4.0", "fs-extra": "^11.0.0", "glob": "^10.0.0", "@tachui/core": "0.8.1-alpha" }, "devDependencies": { "@types/fs-extra": "^11.0.0", "@types/prompts": "^2.4.0", "@types/node": "^20.0.0", "typescript": "^5.8.0", "vitest": "^3.2.4" }, "keywords": [ "cli", "tachui", "developer-tools", "code-generation", "scaffolding", "migration", "performance" ], "author": "tachUI Team", "license": "MPL-2.0", "repository": { "type": "git", "url": "https://github.com/tach-UI/tachUI", "directory": "packages/cli" }, "bugs": "https://github.com/tach-UI/tachUI/issues", "engines": { "node": ">=20.0.0" }, "sideEffects": false, "publishConfig": { "access": "public" }, "scripts": { "build": "tsc -p tsconfig.build.json", "dev": "tsc -p tsconfig.build.json --watch", "valid": "clear && vitest run && tsc --noEmit && pnpm lint && pnpm build", "test": "vitest", "test:ci": "vitest run", "type-check": "tsc --noEmit", "lint": "oxlint src", "clean": "rm -rf dist" } }