-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "kenji-engine",
"version": "0.0.0",
"description": "Terminal Game Engine with AI-driven development",
"module": "index.ts",
"type": "module",
"private": true,
"bin": {
"kenji": "./bin/kenji"
},
"scripts": {
"start": "bun run pong",
"pong": "cd examples/pong && bun run index.ts",
"test": "vitest",
"test:ui": "vitest --config vitest.config.ts",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:engine": "bun run test-engine.ts",
"mcp": "bun run mcp-server.ts",
"dev": "bun run test-engine.ts",
"dev:tui": "bun run src/cli/kenji.ts --watch",
"engine:test": "bun run test-engine.ts",
"game:pong": "cd examples/pong && bun run index.ts",
"kenji": "bun run src/cli/kenji.ts",
"menu": "bun run src/cli/kenji.ts menu",
"install-global": "bun link",
"build": "bun run scripts/build.ts",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/bun": "latest",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.1",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"jsdom": "^23.0.0",
"vitest": "^1.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@modelcontextprotocol/sdk": "^1.17.4",
"@opentui/core": "latest",
"@opentui/react": "latest",
"bitecs": "^0.3.40",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"zod": "^4.1.3"
},
"keywords": [
"game-engine",
"terminal",
"tui",
"ascii",
"bun",
"typescript",
"mcp"
],
"author": "Kenji Engine Team",
"license": "MIT"
}