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
JSON
{
"name": "termdle",
"version": "1.9.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.5.1",
"ink-gradient": "^3.0.0",
"jotai": "^2.16.0",
"react": "^19.2.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"tsdown": "^0.15.12",
"typescript-eslint": "^8.49.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"typescript": "^5"
}
}