-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.75 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.75 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
{
"name": "@anthropic/leo",
"version": "0.1.0",
"description": "Leo - AI-powered blog writing agent. Create SEO-optimized content with Claude.",
"type": "module",
"main": "dist/index.js",
"bin": {
"leo": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.tsx",
"test": "tsx src/tests/context-bar.test.ts",
"postinstall": "node scripts/postinstall.cjs || true"
},
"keywords": [
"claude",
"anthropic",
"ai",
"agent",
"blog",
"seo",
"content",
"writing",
"sanity",
"cms",
"cli"
],
"author": "Anthropic",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BlockchainHB/leo.git"
},
"homepage": "https://github.com/BlockchainHB/leo#readme",
"bugs": {
"url": "https://github.com/BlockchainHB/leo/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@inkjs/ui": "^2.0.0",
"@sanity/client": "^6.22.0",
"@sanity/image-url": "^1.0.2",
"chalk": "^5.6.2",
"dotenv": "^16.6.1",
"figlet": "^1.9.4",
"gradient-string": "^3.0.0",
"ink": "^6.5.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.1",
"semver": "^7.6.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.10.1",
"@types/react": "^19.2.7",
"@types/semver": "^7.5.8",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"files": [
"dist",
"scripts",
".claude",
"README.md",
"LICENSE"
]
}