{
	"name": "@hhoangphuoc/escape-room-cli",
	"version": "1.3.8",
	"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 && npm run verify-package",
		"verify-package": "npm pack --dry-run && node -e \"console.log('\\n✅ Package verification passed! Files to be published:')\"",
		"check-package": "npm pack && tar -tzf *.tgz | grep -E '(package/dist/|package/package.json|package/README.md)' && rm *.tgz",
		"version:patch": "npm version patch",
		"version:minor": "npm version minor",
		"version:major": "npm version major",
		"release:readme": "echo '✅ readme.md is ready'",
		"release:build-and-publish": "npm run build && npm run verify-package && npm publish",
		"release": "npm run release:readme && 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": {
		"@inkjs/ui": "^2.0.0",
		"@modelcontextprotocol/sdk": "^1.24.3",
		"@typescript-eslint/eslint-plugin": "^8.31.0",
		"axios": "^1.8.4",
		"dotenv": "^16.5.0",
		"form-data": ">=4.0.4",
		"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.3.1"
	},
	"devDependencies": {
		"@sindresorhus/tsconfig": "^3.0.1",
		"@types/node": "^22.18.12",
		"@types/react": "^18.0.32",
		"@vdemedes/prettier-config": "^2.0.1",
		"ava": "^5.2.0",
		"chalk": "^5.2.0",
		"eslint-config-xo-react": "^0.27.0",
		"eslint-plugin-react": "^7.32.2",
		"eslint-plugin-react-hooks": "^4.6.0",
		"form-data": ">=4.0.4",
		"ink-testing-library": "^3.0.0",
		"prettier": "^2.8.7",
		"ts-node": "^10.9.1",
		"typescript": "^5.8.3",
		"xo": "^0.60.0"
	},
	"overrides": {
		"js-yaml": "^4.1.1",
		"body-parser": "^2.2.1",
		"supertap": {
			"js-yaml": "^3.14.2"
		}
	},
	"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"
}
