Checkpoint current interactive fiction state

This commit is contained in:
2026-05-14 21:17:43 +02:00
parent c745efd1d2
commit 873049f7e6
183 changed files with 13755 additions and 1459 deletions
+14 -3
View File
@@ -4,18 +4,29 @@
"description": "A modern take on classic text adventures that combines traditional world modeling with Large Language Models (LLMs) to create natural language interactive fiction experiences.",
"main": "index.js",
"scripts": {
"check:node": "node scripts/check-node-version.js",
"prestart": "npm run check:node",
"start": "node dist/index.js",
"prestart:web": "npm run check:node",
"start:web": "node dist/index.js",
"prestart:cli": "npm run check:node",
"start:cli": "node dist/index.js --cli",
"dev": "nodemon --watch 'src/**' --ext 'ts,json' --exec 'ts-node src/index.ts'",
"dev:web": "nodemon --watch 'src/**' --ext 'ts,json' --exec 'ts-node src/index.ts'",
"dev:cli": "nodemon --watch 'src/**' --ext 'ts,json' --exec 'ts-node src/index.ts --cli'",
"predev": "npm run check:node",
"dev": "nodemon --watch src --ext ts,json --exec \"ts-node src/index.ts\"",
"predev:web": "npm run check:node",
"dev:web": "nodemon --watch src --ext ts,json --exec \"ts-node src/index.ts\"",
"predev:cli": "npm run check:node",
"dev:cli": "nodemon --watch src --ext ts,json --exec \"ts-node src/index.ts --cli\"",
"pretest-server": "npm run check:node",
"test-server": "ts-node src/test-server.ts",
"build": "tsc",
"test": "jest",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix"
},
"engines": {
"node": ">=18.17"
},
"keywords": [],
"author": "",
"license": "ISC",