-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "@opencode-go/cli",
"version": "1.0.9",
"description": "CLI to manage OpenCode Go subscription and launch Claude Code with the correct environment variables",
"type": "module",
"bin": {
"opencode-go": "dist/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lordymine/opencode-go-cli.git"
},
"homepage": "https://github.com/Lordymine/opencode-go-cli",
"bugs": {
"url": "https://github.com/Lordymine/opencode-go-cli/issues"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun && bun build src/statusline/script.ts --outfile dist/statusline.js --target bun",
"dev": "bun run src/index.ts",
"typecheck": "bun tsc --noEmit",
"test": "bun test",
"start": "bun run src/index.ts",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@openauthjs/openauth": "^0.4.3"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.7.2"
}
}