Files
neural-nexus-game/package.json

44 lines
1.3 KiB
JSON

{
"name": "neural-nexus-game",
"version": "1.0.0",
"description": "A modern HTML5 puzzle game featuring neural network connectivity challenges",
"main": "index.html",
"scripts": {
"dev": "python -m http.server 8000",
"serve": "npx http-server -p 8000 -c-1",
"test": "echo \"Run manual tests - see tests/manual-testing.md\"",
"build": "echo \"No build step required - single HTML file\"",
"deploy": "echo \"Copy index.html to hosting platform\"",
"lighthouse": "npx lighthouse http://localhost:8000 --output=json --output-path=tests/performance-logs/lighthouse-$(date +%Y%m%d).json",
"start": "python -m http.server 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndersPier/neural-nexus-game.git"
},
"keywords": [
"game",
"puzzle",
"html5",
"canvas",
"neural-network",
"javascript",
"web-game",
"brain-training",
"modern",
"responsive"
],
"author": "Anders Lehmann Pier",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndersPier/neural-nexus-game/issues"
},
"homepage": "https://andersPier.github.io/neural-nexus-game/",
"devDependencies": {
"http-server": "^14.1.1",
"lighthouse": "^10.4.0"
},
"engines": {
"node": ">=14.0.0"
}
}