-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.71 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
{
"name": "@gonkagate/opencode-setup",
"version": "0.5.0",
"description": "Onboarding CLI for configuring OpenCode to use GonkaGate as a custom provider.",
"homepage": "https://github.com/GonkaGate/opencode-setup#readme",
"bugs": {
"url": "https://github.com/GonkaGate/opencode-setup/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GonkaGate/opencode-setup.git"
},
"type": "module",
"bin": {
"opencode-setup": "bin/gonkagate-opencode.js",
"gonkagate-opencode": "bin/gonkagate-opencode.js"
},
"files": [
"bin",
"dist",
"docs",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/cli.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"package:check": "publint",
"prepack": "npm run ci",
"test": "npm run build && node scripts/run-tests.mjs",
"typecheck": "tsc -p tsconfig.json",
"ci": "npm run typecheck && npm run test && npm run format:check && npm run package:check"
},
"engines": {
"node": ">=22.14.0"
},
"keywords": [
"gonkagate",
"opencode",
"open code",
"installer",
"cli",
"custom provider",
"openai compatible"
],
"license": "Apache-2.0",
"packageManager": "npm@11.11.1",
"devDependencies": {
"@types/node": "^24.6.1",
"@types/semver": "^7.7.1",
"@types/write-file-atomic": "^4.0.3",
"prettier": "^3.6.2",
"publint": "^0.3.15",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"commander": "^14.0.3",
"jsonc-parser": "^3.3.1",
"semver": "^7.7.3",
"write-file-atomic": "^7.0.1"
}
}