{ "name": "dsk-cli", "version": "0.1.0", "description": "DSL Development Kit - Command-line tool for creating Domain-Specific Languages", "main": "dist/index.js", "module": "index.ts", "type": "module", "bin": { "dsk": "./dist/index.js" }, "scripts": { "build": "bunx tsc", "dev": "bun run --watch src/index.ts", "start": "bun run dist/index.js" }, "devDependencies": { "@types/bun": "latest", "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.9", "@types/node": "^24.2.1" }, "peerDependencies": { "typescript": "^5.9.2" }, "dependencies": { "chalk": "^5.5.0", "chokidar": "^4.0.3", "commander": "^14.0.0", "execa": "^9.6.0", "fs-extra": "^11.3.1", "inquirer": "^12.9.1" } }