-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.89 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.89 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
{
"name": "liku-ai",
"version": "2.0.0-alpha.1",
"type": "module",
"description": "Liku-AI - AI-Enhanced Terminal Game Platform with WebSocket Tools",
"main": "dist/index.js",
"bin": {
"liku": "dist/index.js",
"liku-agent": "dist/agent/cli.js",
"liku-autoplay": "dist/autoplayer/cli.js",
"liku-learn": "dist/learn/cli.js",
"liku-server": "dist/websocket/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"play": "echo '⚠️ AI AGENTS: Read LIKU-CORE.md first! Use Start-Process to launch in separate window.' && exit 1",
"dev": "tsc --watch",
"test": "vitest",
"test:run": "vitest run",
"server": "node dist/websocket/cli.js",
"server:verbose": "node dist/websocket/cli.js --verbose",
"ai-vs-ai": "node dist/websocket/cli.js & sleep 2 && node scripts/test-ai-vs-ai.js",
"agent": "node dist/agent/cli.js",
"agent:info": "node dist/agent/cli.js info",
"agent:read": "node dist/agent/cli.js read",
"autoplay": "node dist/autoplayer/cli.js",
"autoplay:dino": "node dist/autoplayer/cli.js --game dino",
"autoplay:dino:verbose": "node dist/autoplayer/cli.js --game dino --verbose",
"postinstall": "node scripts/install-command.js",
"preuninstall": "node scripts/uninstall-command.js"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@inkjs/ui": "^2.0.0",
"better-sqlite3": "^11.6.0",
"chess.js": "^1.4.0",
"esbuild": "^0.27.0",
"ink": "^5.1.0",
"ink-text-input": "^6.0.0",
"lodash.throttle": "^4.1.1",
"meow": "^13.0.0",
"react": "^18.3.1",
"ws": "^8.18.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/ws": "^8.5.13",
"ts-node": "^10.9.2",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}