sandhill-road
Version:
A narrative-driven startup simulation game where you guide a founder from garage to exit
68 lines (67 loc) • 1.57 kB
JSON
{
"name": "sandhill-road",
"version": "1.1.2",
"description": "A narrative-driven startup simulation game where you guide a founder from garage to exit",
"main": "index.js",
"bin": {
"sandhill-road": "./index.js"
},
"scripts": {
"start": "ts-node src/cli/index.ts",
"build": "tsc",
"dev": "ts-node-dev --respawn src/cli/index.ts",
"prepublishOnly": "npm run build",
"test": "echo \"No tests specified - skipping test step\"",
"lint": "eslint . --ext .ts",
"release": "standard-version"
},
"keywords": [
"game",
"simulation",
"startup",
"narrative",
"cli",
"text-adventure",
"oregon-trail",
"founder",
"silicon-valley"
],
"author": {
"name": "Your Name",
"email": "your.email@example.com",
"url": "https://github.com/yourusername"
},
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.8",
"@types/node": "^20.11.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^4.1.2",
"figlet": "^1.7.0",
"inquirer": "^8.2.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/sandhill-road.git"
},
"bugs": {
"url": "https://github.com/yourusername/sandhill-road/issues"
},
"homepage": "https://github.com/yourusername/sandhill-road#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"src",
"assets",
"index.js",
"README.md",
"LICENSE"
]
}