UNPKG

termdle

Version:

A fully-featured Wordle clone that runs entirely in your terminal! Built with TypeScript, React, and Ink.

65 lines (64 loc) 1.44 kB
{ "name": "termdle", "version": "1.3.0", "description": "A fully-featured Wordle clone that runs entirely in your terminal! Built with TypeScript, React, and Ink.", "main": "dist/index.js", "module": "dist/index.js", "type": "module", "bin": { "termdle": "dist/index.js" }, "files": [ "dist/**/*" ], "keywords": [ "wordle", "terminal", "cli", "game", "react", "ink", "typescript", "puzzle", "word-game" ], "repository": { "type": "git", "url": "git+https://github.com/k-dang/termdle.git" }, "scripts": { "start": "node dist/index.js", "dev": "tsdown --watch", "build": "tsdown", "show": "tsdown --silent && node dist/index.js", "typecheck": "tsc --noEmit", "lint": "eslint . --ext .ts,.tsx", "format": "prettier --write .", "test": "vitest" }, "dependencies": { "ink": "^6.2.0", "ink-gradient": "^3.0.0", "jotai": "^2.13.1", "react": "^19.1.1" }, "devDependencies": { "@eslint/js": "^9.33.0", "@types/node": "^24.3.0", "@types/react": "^19.1.10", "eslint": "^9.33.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-react": "^7.37.5", "globals": "^16.3.0", "prettier": "^3.6.2", "tsdown": "^0.14.1", "typescript-eslint": "^8.39.1", "vitest": "^3.2.4" }, "engines": { "node": ">=20.0.0" }, "peerDependencies": { "typescript": "^5" } }