-
Notifications
You must be signed in to change notification settings - Fork 343
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.88 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.88 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
{
"name": "grok-dev",
"version": "1.1.4-rc5",
"description": "An open-source AI coding agent powered by Grok, built with Bun and OpenTUI.",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"grok": "dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "tsc",
"build:binary": "bun build --compile --outfile dist/grok-standalone ./src/index.ts",
"start": "bun run dist/index.js",
"typecheck": "tsc --noEmit",
"test": "bunx vitest run",
"test:watch": "bunx vitest",
"lint": "biome check src/",
"format": "biome format src/",
"format:fix": "biome format --write src/",
"lint:fix": "biome check --fix src/",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs,json}": "biome check --write --no-errors-on-unmatched"
},
"keywords": [
"cli",
"agent",
"grok",
"ai",
"coding",
"terminal",
"opentui"
],
"author": "Vibe Kit",
"license": "MIT",
"dependencies": {
"@ai-sdk/mcp": "^1.0.25",
"@ai-sdk/provider-utils": "^4.0.21",
"@ai-sdk/xai": "^3.0.67",
"@modelcontextprotocol/sdk": "^1.27.1",
"@opentui/core": "^0.1.88",
"@opentui/react": "^0.1.88",
"agent-desktop": "^0.1.11",
"ai": "^6.0.116",
"commander": "^12.1.0",
"diff": "^8.0.3",
"dotenv": "^16.6.1",
"grammy": "^1.41.1",
"react": "^19.2.4",
"semver": "^7.7.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/diff": "^8.0.0",
"@types/node": "^22.19.15",
"@types/react": "^19.2.14",
"@types/semver": "^7.7.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"preferGlobal": true
}