-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "adv",
"version": "1.0.2",
"description": "A systemic story game engine - exploring how to make story interactive through simulation and emergent narrative",
"type": "module",
"private": true,
"main": "public/index.html",
"browser": "public/client.mjs",
"scripts": {
"test": "NODE_ENV=test mocha test/**/*.test.mjs",
"typecheck": "tsc",
"perf": "node --expose-gc perf/run_benchmarks.mjs"
},
"keywords": [
"game-engine",
"narrative-engine",
"systemic-story",
"story-systems",
"simulation",
"bitemporal",
"framework"
],
"author": "Jonas Liljegren <jonas@liljegren.org>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/aigan/adventure.git"
},
"bugs": {
"url": "https://github.com/aigan/adventure/issues"
},
"homepage": "https://github.com/aigan/adventure#readme",
"overrides": {
"mocha": {
"glob": "10.5.0"
}
},
"devDependencies": {
"chai": "^6.2.0",
"eslint": "^9.35.0",
"eslint-plugin-jsdoc": "^61.0.1",
"globals": "^16.4.0",
"mocha": "^11.7.4",
"typescript": "^5.9.3"
}
}