-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 961 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 961 Bytes
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
{
"name": "spacemolt-client",
"version": "0.1.0",
"description": "AI-powered autonomous client for the SpaceMolt MMO game",
"module": "index.tsx",
"type": "module",
"scripts": {
"start": "bun baml-cli generate && bun run index.tsx",
"dev": "DEBUG=true bun run index.tsx",
"typecheck": "bun x tsc --noEmit",
"baml": "bun baml-cli generate"
},
"bin": {
"spacemolt-client": "./index.tsx"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@boundaryml/baml": "^0.218.1",
"@google/generative-ai": "^0.24.1",
"ink": "^6.6.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"openai": "^4.104.0",
"react": "^19.2.4"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.10"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/statico/spacemolt-client.git"
},
"license": "MIT"
}