-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.11 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
{
"name": "grok-bot-cli",
"version": "0.9.0",
"description": "CLI and Agent Bundle plugin for Grok Bot agents and groups: create, update, message, inspect threads, and automate cleanup",
"type": "module",
"bin": {
"gbot": "./dist/bin/gbot.mjs",
"gbot-install": "./dist/bin/gbot-install.js",
"grok-bot": "./dist/bin/gbot.mjs"
},
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"build": "agent-bundle build",
"changeset": "changeset",
"check": "npm run validate && npm run build && npm run validate:artifact && npm run typecheck && npm test",
"gbot": "node dist/bin/gbot.mjs",
"prepack": "agent-bundle prepack",
"release": "changeset publish",
"test": "npm run test:unit && npm run test:routes",
"test:routes": "rstest --config rstest.route-unit.config.ts",
"test:unit": "node scripts/run-unit-tests.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"validate": "agent-bundle validate",
"validate:artifact": "agent-bundle validate --artifact artifact"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScriptedAlchemy/grok-bot-cli.git"
},
"homepage": "https://github.com/ScriptedAlchemy/grok-bot-cli#readme",
"bugs": {
"url": "https://github.com/ScriptedAlchemy/grok-bot-cli/issues"
},
"author": "Zack Jackson (https://github.com/ScriptedAlchemy)",
"license": "MIT",
"keywords": [
"grok",
"grok-bot",
"grokbot",
"gbot",
"cursor",
"ai-agents",
"automation",
"terminal",
"cli",
"agent-bundle"
],
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"@agent-bundle/runtime": "https://pkg.pr.new/ScriptedAlchemy/agent-bundle/@agent-bundle/runtime@ab5ae66e1d9c2829a092640c586e2b3eacc4be88",
"@changesets/cli": "3.0.3",
"@rstest/core": "0.11.12",
"@types/node": "^24.0.0",
"@types/react": "^19.2.18",
"agent-bundle": "https://pkg.pr.new/ScriptedAlchemy/agent-bundle/agent-bundle@ab5ae66e1d9c2829a092640c586e2b3eacc4be88",
"react": "19.3.0",
"react-dom": "19.3.0",
"typescript": "7.0.2",
"zod": "4.6.5"
}
}