-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.48 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.48 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
{
"name": "@inaplight/angel",
"version": "1.1.0",
"type": "module",
"description": "AI agent that connects to Discord, Slack, iMessage, and Signal with tool use, memory, and coding agents",
"bin": {
"angel": "src/index.ts"
},
"files": [
"src",
"angel.config.example.yaml",
"README.md",
"SOUL.md"
],
"keywords": [
"ai",
"agent",
"chatbot",
"discord",
"slack",
"imessage",
"signal",
"bun"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/plyght/angel"
},
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"start": "bun run src/index.ts start",
"setup": "bun run src/index.ts setup",
"doctor": "bun run src/index.ts doctor",
"config": "bun run src/index.ts config",
"reset": "bun run src/index.ts reset",
"dev": "bun --watch run src/index.ts start",
"lint": "bunx biome check src",
"fix": "bunx biome check --fix src",
"format": "bunx biome format --write src",
"build": "bun build src/index.ts --compile --outfile angel",
"test": "bun test"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@clack/core": "^1.1.0",
"@clack/prompts": "^1.1.0",
"@slack/bolt": "^4.3.0",
"cron-parser": "^5.0.6",
"discord.js": "^14.18.0",
"openai": "^5.8.0",
"picocolors": "^1.1.1",
"xxhash-wasm": "^1.1.0",
"yaml": "^2.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/bun": "latest"
}
}