kthulu/codebase/examples/tictactoe/package.json
2026-03-13 13:30:55 -07:00

18 lines
No EOL
391 B
JSON

{
"name": "tic-tac-toe",
"version": "1.0.0",
"description": "Terminal-based Tic-Tac-Toe game",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch"
},
"devDependencies": {
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^2.0.0",
"@types/node": "^22.0.0"
}
}