anygate 0.5.11 → 0.6.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 CHANGED
@@ -1,96 +1,110 @@
1
1
  {
2
- "name": "anygate",
3
- "version": "0.5.11",
4
- "publishConfig": {
5
- "access": "public"
6
- },
7
- "description": "Route any model into any coding agent — launch Claude Code, Codex, and more with multi-provider gateways",
8
- "author": "ramananbuilds",
9
- "license": "MIT",
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/ramananbuilds/anygate.git"
13
- },
14
- "homepage": "https://github.com/ramananbuilds/anygate#readme",
15
- "bugs": {
16
- "url": "https://github.com/ramananbuilds/anygate/issues"
17
- },
18
- "keywords": [
19
- "claude",
20
- "claude-code",
21
- "codex",
22
- "ai",
23
- "llm",
24
- "cli",
25
- "gateway",
26
- "vertex"
27
- ],
28
- "type": "module",
29
- "bin": {
30
- "anygate": "dist/cli.js"
31
- },
32
- "files": [
33
- "dist",
34
- "README.md"
35
- ],
36
- "engines": {
37
- "node": ">=18"
38
- },
39
- "scripts": {
40
- "build": "tsup && npm run ui:build && node scripts/copy-ui-assets.mjs",
41
- "dev": "tsup --watch",
42
- "test": "vitest run",
43
- "test:watch": "vitest",
44
- "typecheck": "tsc --noEmit",
45
- "refresh:models-dev": "node scripts/refresh-models-dev-cache.mjs",
46
- "audit:context-windows": "tsx scripts/audit-context-windows.ts",
47
- "generate:context-rules": "tsx scripts/generate-context-rules.ts",
48
- "prepublishOnly": "node -e \"if (require('./package.json').version !== require('./package-lock.json').version) { console.error('Error: package.json and package-lock.json versions are out of sync! Run npm install to sync.'); process.exit(1); }\" && npm run build",
49
- "ui:dev": "npm --prefix src/ui/app run dev",
50
- "ui:build": "npm --prefix src/ui/app run build"
51
- },
52
- "dependencies": {
53
- "@ai-sdk/alibaba": "^1.0.26",
54
- "@ai-sdk/amazon-bedrock": "^4.0.113",
55
- "@ai-sdk/azure": "^3.0.70",
56
- "@ai-sdk/cerebras": "^2.0.54",
57
- "@ai-sdk/cohere": "^3.0.36",
58
- "@ai-sdk/deepinfra": "^2.0.52",
59
- "@ai-sdk/gateway": "^3.0.125",
60
- "@ai-sdk/google": "^3.0.80",
61
- "@ai-sdk/google-vertex": "^4.0.142",
62
- "@ai-sdk/groq": "^3.0.39",
63
- "@ai-sdk/mistral": "^3.0.37",
64
- "@ai-sdk/openai": "^3.0.68",
65
- "@ai-sdk/openai-compatible": "^2.0.48",
66
- "@ai-sdk/perplexity": "^3.0.33",
67
- "@ai-sdk/togetherai": "^2.0.53",
68
- "@ai-sdk/vercel": "^2.0.50",
69
- "@ai-sdk/xai": "^3.0.93",
70
- "@clack/prompts": "^0.9.1",
71
- "@openrouter/ai-sdk-provider": "^2.9.0",
72
- "ai": "^6.0.197",
73
- "gitlab-ai-provider": "^6.8.0",
74
- "ipaddr.js": "^2.4.0",
75
- "open": "^11.0.0",
76
- "picocolors": "^1.1.1",
77
- "smol-toml": "^1.6.1",
78
- "venice-ai-sdk-provider": "^2.0.2",
79
- "ws": "^8.21.0",
80
- "zod": "^3.25.76"
81
- },
82
- "devDependencies": {
83
- "@types/node": "^22.0.0",
84
- "@types/ws": "^8.18.1",
85
- "@vitest/coverage-v8": "^2.1.9",
86
- "tsup": "^8.0.0",
87
- "typescript": "^5.5.0",
88
- "vitest": "^2.0.0"
89
- },
90
- "optionalDependencies": {
91
- "@napi-rs/keyring": "^1.3.0"
92
- },
93
- "overrides": {
94
- "ws": "^8.21.0"
95
- }
2
+ "name": "anygate",
3
+ "version": "0.6.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "Route any model into any coding agent — launch Claude Code, Codex, and more with multi-provider gateways",
8
+ "author": "ramananbuilds",
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/ramananbuilds/anygate.git"
13
+ },
14
+ "homepage": "https://github.com/ramananbuilds/anygate#readme",
15
+ "bugs": {
16
+ "url": "https://github.com/ramananbuilds/anygate/issues"
17
+ },
18
+ "keywords": [
19
+ "claude",
20
+ "claude-code",
21
+ "codex",
22
+ "ai",
23
+ "llm",
24
+ "cli",
25
+ "gateway",
26
+ "vertex"
27
+ ],
28
+ "type": "module",
29
+ "bin": {
30
+ "anygate": "dist/cli.js"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md"
35
+ ],
36
+ "engines": {
37
+ "node": ">=18"
38
+ },
39
+ "scripts": {
40
+ "build": "tsup && npm run ui:build && node scripts/copy-ui-assets.mjs",
41
+ "dev": "tsup --watch",
42
+ "test": "vitest run",
43
+ "test:watch": "vitest",
44
+ "test:coverage": "vitest run --coverage",
45
+ "typecheck": "tsc --noEmit",
46
+ "refresh:models-dev": "node scripts/refresh-models-dev-cache.mjs",
47
+ "audit:context-windows": "tsx scripts/audit-context-windows.ts",
48
+ "generate:context-rules": "tsx scripts/generate-context-rules.ts",
49
+ "lint": "eslint src/ --ext .ts",
50
+ "lint:fix": "eslint src/ --ext .ts --fix",
51
+ "format": "prettier --write \"src/**/*.ts\"",
52
+ "format:check": "prettier --check \"src/**/*.ts\"",
53
+ "prepublishOnly": "node -e \"if (require('./package.json').version !== require('./package-lock.json').version) { console.error('Error: package.json and package-lock.json versions are out of sync! Run npm install to sync.'); process.exit(1); }\" && npm run build",
54
+ "ui:dev": "npm --prefix src/ui/app run dev",
55
+ "ui:build": "npm --prefix src/ui/app run build",
56
+ "prepare": "husky"
57
+ },
58
+ "dependencies": {
59
+ "@ai-sdk/alibaba": "^1.0.26",
60
+ "@ai-sdk/amazon-bedrock": "^4.0.113",
61
+ "@ai-sdk/azure": "^3.0.70",
62
+ "@ai-sdk/cerebras": "^2.0.54",
63
+ "@ai-sdk/cohere": "^3.0.36",
64
+ "@ai-sdk/deepinfra": "^2.0.52",
65
+ "@ai-sdk/gateway": "^3.0.125",
66
+ "@ai-sdk/google": "^3.0.80",
67
+ "@ai-sdk/google-vertex": "^4.0.142",
68
+ "@ai-sdk/groq": "^3.0.39",
69
+ "@ai-sdk/mistral": "^3.0.37",
70
+ "@ai-sdk/openai": "^3.0.68",
71
+ "@ai-sdk/openai-compatible": "^2.0.48",
72
+ "@ai-sdk/perplexity": "^3.0.33",
73
+ "@ai-sdk/togetherai": "^2.0.53",
74
+ "@ai-sdk/vercel": "^2.0.50",
75
+ "@ai-sdk/xai": "^3.0.93",
76
+ "@clack/prompts": "^0.9.1",
77
+ "@openrouter/ai-sdk-provider": "^2.9.0",
78
+ "ai": "^6.0.197",
79
+ "gitlab-ai-provider": "^6.8.0",
80
+ "ipaddr.js": "^2.4.0",
81
+ "open": "^11.0.0",
82
+ "picocolors": "^1.1.1",
83
+ "smol-toml": "^1.6.1",
84
+ "venice-ai-sdk-provider": "^2.0.2",
85
+ "ws": "^8.21.0",
86
+ "zod": "^3.25.76"
87
+ },
88
+ "devDependencies": {
89
+ "@types/node": "^22.0.0",
90
+ "@types/ws": "^8.18.1",
91
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
92
+ "@typescript-eslint/parser": "^8.0.0",
93
+ "@vitest/coverage-v8": "^2.1.9",
94
+ "eslint": "^9.0.0",
95
+ "eslint-config-prettier": "^9.1.0",
96
+ "husky": "^9.1.7",
97
+ "lint-staged": "^16.4.0",
98
+ "prettier": "^3.3.0",
99
+ "tsup": "^8.0.0",
100
+ "typescript": "^5.5.0",
101
+ "typescript-eslint": "^8.65.0",
102
+ "vitest": "^2.0.0"
103
+ },
104
+ "optionalDependencies": {
105
+ "@napi-rs/keyring": "^1.3.0"
106
+ },
107
+ "overrides": {
108
+ "ws": "^8.21.0"
109
+ }
96
110
  }