-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 978 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 978 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": "phantom",
"version": "0.18.2",
"type": "module",
"bin": {
"phantom": "src/cli/main.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"phantom": "bun run src/cli/main.ts",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"typecheck": "tsc --noEmit",
"test": "bun test",
"format": "biome format --write src/"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.77",
"@anthropic-ai/sdk": "^0.80.0",
"@modelcontextprotocol/sdk": "^1.28.0",
"@slack/bolt": "^4.6.0",
"croner": "^10.0.1",
"imapflow": "^1.2.18",
"nodemailer": "^8.0.4",
"resend": "^6.9.4",
"telegraf": "^4.16.3",
"yaml": "^2.6.0",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "latest",
"@types/nodemailer": "^7.0.11",
"typescript": "^5.7.0"
}
}