-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.38 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
{
"name": "@gonkagate/openclaw",
"version": "0.3.0",
"description": "CLI installer and verifier for using OpenClaw with GonkaGate as the primary OpenAI-compatible provider.",
"homepage": "https://github.com/GonkaGate/openclaw-setup#readme",
"bugs": {
"url": "https://github.com/GonkaGate/openclaw-setup/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GonkaGate/openclaw-setup.git"
},
"type": "module",
"bin": {
"gonkagate-openclaw": "bin/gonkagate-openclaw.js"
},
"files": [
"bin",
"dist",
"docs",
"scripts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"prepack": "npm run build",
"test": "node scripts/run-tests.mjs",
"ci": "npm test && npm run build"
},
"engines": {
"node": ">=22.14.0"
},
"keywords": [
"gonkagate",
"gonka",
"gonka ai",
"gonka gateway",
"openclaw",
"openclaw onboarding",
"openai-compatible",
"cli"
],
"license": "Apache-2.0",
"packageManager": "npm@11.11.1",
"devDependencies": {
"@types/node": "^24.5.2",
"@types/write-file-atomic": "^4.0.3",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"commander": "^14.0.3",
"json5": "^2.2.3",
"write-file-atomic": "^7.0.1"
}
}