-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 844 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 844 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
39
40
{
"name": "xboost",
"version": "1.0.0",
"description": "X Content Optimization Tool - Powered by X algorithm insights + bird CLI + AI",
"type": "module",
"main": "index.js",
"bin": {
"xboost": "./index.js"
},
"scripts": {
"start": "bun index.js",
"start:node": "node index.js",
"test": "bun index.js --help",
"test:node": "node index.js --help"
},
"keywords": [
"twitter",
"x",
"social-media",
"optimization",
"cli",
"algorithm",
"engagement"
],
"author": "",
"license": "MIT",
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/google": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"ai": "^4.0.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.0.1",
"proper-lockfile": "^4.1.2"
},
"engines": {
"node": ">=20.0.0"
}
}