-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.16 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.16 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "splash-agent",
"version": "2.4.0",
"description": "Splash — Autonomous Agent Platform: CLI + multi-provider agent loop + TUI dashboard + platform bots",
"author": "Splash Contributors",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/AzizX-coder/Splash.git"
},
"homepage": "https://github.com/AzizX-coder/Splash#readme",
"bugs": {
"url": "https://github.com/AzizX-coder/Splash/issues"
},
"keywords": [
"ai",
"agent",
"autonomous",
"cli",
"tui",
"llm",
"openrouter",
"claude",
"gpt",
"gemini",
"deepseek",
"ollama",
"telegram-bot",
"slack-bot",
"discord-bot"
],
"engines": {
"node": ">=20.0.0"
},
"bin": {
"splash": "./bin/splash.mjs",
"alpclaw": "./bin/alpclaw.mjs"
},
"files": [
"bin/",
"dist/",
"templates/",
"README.md",
"LICENSE",
".env.example"
],
"scripts": {
"build": "pnpm -r run build",
"build:cli": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "echo \"eslint v9 migration pending\"",
"format": "prettier --write \"packages/**/*.ts\" \"examples/**/*.ts\"",
"clean": "pnpm -r run clean",
"dev": "tsx examples/cli.ts",
"prepare": "pnpm run build && pnpm run build:cli",
"prepublishOnly": "pnpm run typecheck && pnpm run lint && pnpm run test"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "^22.0.0",
"@types/react": "^18.3.12",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"dotenv": "^16.4.5",
"ink": "^5.0.1",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"openai": "^6.41.0",
"picocolors": "^1.1.1",
"react": "^18.3.1",
"telegraf": "^4.16.3",
"zod": "^3.25.76"
},
"optionalDependencies": {
"@mozilla/readability": "^0.6.0",
"edge-tts-universal": "^1.4.0",
"jsdom": "^29.1.1",
"node-record-lpcm16": "^1.0.1",
"turndown": "^7.2.4"
}
}