zenctl 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "zenctl",
3
+ "version": "0.2.0",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "Distributed egress proxy network for OpenCode Zen API rate-limit bypass",
7
+ "bin": {
8
+ "zenctl": "bin/zenctl.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "bin",
13
+ "README.md"
14
+ ],
15
+ "scripts": {
16
+ "start": "bun run src/index.ts",
17
+ "test": "bun test",
18
+ "test:watch": "bun test --watch",
19
+ "typecheck": "tsc --noEmit",
20
+ "build": "bun build --compile --outfile zenctl src/index.ts",
21
+ "build:npm": "bun build src/index.ts --target bun --outfile dist/zenctl.js",
22
+ "prepublishOnly": "bun run build:npm && bun run typecheck && bun test"
23
+ },
24
+ "dependencies": {
25
+ "commander": "^13.0.0",
26
+ "mongodb": "^6.12.0"
27
+ },
28
+ "devDependencies": {
29
+ "bun-types": "^1.3.14",
30
+ "typescript": "^6.0.3"
31
+ },
32
+ "engines": {
33
+ "bun": ">=1.3.0"
34
+ },
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "git+https://github.com/parthkhxndelwal/zenctl.git"
38
+ },
39
+ "homepage": "https://github.com/parthkhxndelwal/zenctl",
40
+ "bugs": {
41
+ "url": "https://github.com/parthkhxndelwal/zenctl/issues"
42
+ },
43
+ "author": "Parth Khandelwal",
44
+ "license": "MIT",
45
+ "keywords": [
46
+ "opencode",
47
+ "zen",
48
+ "proxy",
49
+ "egress",
50
+ "cli",
51
+ "bun"
52
+ ]
53
+ }