UNPKG

hackages

Version:

CLI tool for learning software development concepts through test-driven development

67 lines (66 loc) 1.7 kB
{ "name": "hackages", "version": "0.2.0", "description": "CLI tool for learning software development concepts through test-driven development", "type": "module", "main": "dist/index.js", "bin": { "hackages": "dist/index.js" }, "scripts": { "build": "tsc", "dev": "tsx index.ts", "test": "npm i && vitest run", "learn": "tsx index.ts", "continue": "tsx index.ts --continue", "prepublishOnly": "npm run build" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "keywords": [ "cli", "learning", "tdd", "test-driven-development", "javascript", "typescript", "vitest", "testing", "education", "coding", "tutorial" ], "author": "007@hackages.com", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/hackages/hackages-cli" }, "homepage": "https://github.com/hackages/hackages-cli#readme", "bugs": { "url": "https://github.com/hackages/hackages-cli/issues" }, "dependencies": { "@types/dotenv": "^6.1.1", "@types/express": "^5.0.3", "@types/prompts": "^2.4.9", "axios": "^1.9.0", "chalk": "^5.4.1", "commander": "^14.0.0", "dotenv": "^16.5.0", "express": "^5.1.0", "open": "^10.1.2", "prompts": "^2.4.2", "uuid": "^11.1.0", "vitest": "^3.2.1" }, "devDependencies": { "@types/node": "^20.0.0", "ts-node": "^10.9.0", "tsx": "^4.19.2", "typescript": "^5.0.0" } }