{
    "name": "wordle-terminal",
    "version": "1.0.11",
    "description": "A Wordle-like game for the terminal.",
    "type": "module",
    "main": "wordle.js",
    "bin": {
        "wordle": "./wordle.js"
    },
    "files": [
        "wordle.js",
        "formatGuess.js",
        "wordPicker.js",
        "userInput.js",
        "words.txt",
        "validWords.txt"
    ],
    "scripts": {
        "start": "node wordle.js",
        "test": "echo \"Error: no test specified\" && exit 1"
    },
    "keywords": [
        "wordle",
        "cli-game",
        "nodejs"
    ],
    "author": "Your Name",
    "license": "ISC",
    "dependencies": {
        "chalk": "^5.4.1",
        "inquirer": "^9.3.7"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/saadpocalypse/wordle-terminal"
    }
}
