UNPKG

@hhoangphuoc/escape-room-cli

Version:

A CLI for playing AI-generated escape room games. Install globally with: npm install -g @hhoangphuoc/escape-room-cli

101 lines (100 loc) 2.56 kB
{ "name": "@hhoangphuoc/escape-room-cli", "version": "1.2.7", "description": "A CLI for playing AI-generated escape room games. Install globally with: npm install -g @hhoangphuoc/escape-room-cli", "bin": { "escape-room-cli": "dist/cli.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/cli.js", "test": "ink test", "lint": "prettier --check . && xo", "format": "prettier --check source/**/*.{js,ts,jsx,tsx} && prettier --write source/**/*.{js,ts,jsx,tsx}", "prepublishOnly": "npm run build", "release:readme": "cp ../README.md ./README.md", "release:build-and-publish": "npm run build && npm publish", "release": "npm run release:readme && npm install && npm run release:build-and-publish" }, "type": "module", "preferGlobal": true, "files": [ "dist", "README.md", "package.json" ], "engines": { "node": ">=18" }, "keywords": [ "escape-room", "cli", "game" ], "author": "Phuoc Ho <phuoc.ho@nedap.com>", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/hhoangphuoc/ai-escape-room.git" }, "bugs": { "url": "https://github.com/hhoangphuoc/ai-escape-room/issues" }, "homepage": "https://github.com/hhoangphuoc/ai-escape-room/tree/main/escape-room-cli#readme", "publishConfig": { "access": "public" }, "dependencies": { "@anthropic-ai/sdk": "^0.39.0", "@inkjs/ui": "^2.0.0", "@modelcontextprotocol/sdk": "^1.10.2", "@typescript-eslint/eslint-plugin": "^8.31.0", "axios": "^1.8.4", "dotenv": "^16.5.0", "fullscreen-ink": "^0.0.2", "ink": "^5.2.0", "ink-big-text": "^2.0.0", "ink-gradient": "^3.0.0", "ink-select-input": "^6.1.0", "ink-spinner": "^5.0.0", "ink-text-input": "^6.0.0", "meow": "^11.0.0", "react": "^18.2.0", "form-data": ">=4.0.4" }, "devDependencies": { "@sindresorhus/tsconfig": "^3.0.1", "@types/node": "^22.14.1", "@types/react": "^18.0.32", "@vdemedes/prettier-config": "^2.0.1", "ava": "^5.2.0", "chalk": "^5.2.0", "form-data": ">=4.0.4", "eslint-config-xo-react": "^0.27.0", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "ink-testing-library": "^3.0.0", "prettier": "^2.8.7", "ts-node": "^10.9.1", "typescript": "^5.8.3", "xo": "^0.60.0" }, "ava": { "extensions": { "ts": "module", "tsx": "module" }, "nodeArguments": [ "--loader=ts-node/esm" ] }, "xo": { "extends": "xo-react", "prettier": true, "rules": { "react/prop-types": "off" } }, "prettier": "@vdemedes/prettier-config" }