proxitor 0.9.0-beta.9 → 0.9.1
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/README.md +58 -488
- package/dist/cli.mjs +55 -50
- package/dist/cli.mjs.map +1 -1
- package/package.json +25 -25
package/package.json
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "proxitor",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "0.9.1",
|
|
5
4
|
"description": "Lightweight proxy for routing CLI requests (claude-code, codex) to OpenRouter",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist"
|
|
8
|
-
],
|
|
9
5
|
"keywords": [
|
|
10
6
|
"proxy",
|
|
11
7
|
"openrouter",
|
|
@@ -15,19 +11,20 @@
|
|
|
15
11
|
"ai",
|
|
16
12
|
"llm"
|
|
17
13
|
],
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
"node": ">=22.0.0"
|
|
14
|
+
"homepage": "https://github.com/neiromaster/proxitor#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/neiromaster/proxitor/issues"
|
|
22
17
|
},
|
|
23
18
|
"repository": {
|
|
24
19
|
"type": "git",
|
|
25
20
|
"url": "git+https://github.com/neiromaster/proxitor.git"
|
|
26
21
|
},
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": "neiromaster",
|
|
24
|
+
"type": "module",
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
31
28
|
"dependencies": {
|
|
32
29
|
"@clack/prompts": "^1.5.0",
|
|
33
30
|
"@hono/node-server": "^2.0.4",
|
|
@@ -51,26 +48,29 @@
|
|
|
51
48
|
"typescript": "^6.0.3",
|
|
52
49
|
"vitest": "^4.1.8"
|
|
53
50
|
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=22.0.0"
|
|
53
|
+
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"build": "tsdown",
|
|
56
|
+
"check": "npm run typecheck:all && npm run check:biome && npm run test",
|
|
57
|
+
"check:biome": "biome check ./src",
|
|
56
58
|
"dev": "tsdown --watch",
|
|
57
|
-
"start": "node dist/cli.mjs",
|
|
58
|
-
"start:dev": "pnpm run build && pnpm run start",
|
|
59
|
-
"lint": "biome lint ./src",
|
|
60
|
-
"lint:fix": "biome lint --fix ./src",
|
|
61
59
|
"format": "biome format --write ./src",
|
|
62
60
|
"format:check": "biome format ./src",
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
61
|
+
"lint": "biome lint ./src",
|
|
62
|
+
"lint:fix": "biome lint --fix ./src",
|
|
63
|
+
"release": "changeset publish",
|
|
64
|
+
"start": "node dist/cli.mjs",
|
|
65
|
+
"start:dev": "pnpm run build && pnpm run start",
|
|
66
66
|
"test": "vitest run",
|
|
67
|
-
"test:watch": "vitest",
|
|
68
67
|
"test:coverage": "vitest run --coverage",
|
|
69
|
-
"test:integration": "vitest run --reporter verbose tests/integration/",
|
|
70
68
|
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
69
|
+
"test:integration": "vitest run --reporter verbose tests/integration/",
|
|
70
|
+
"test:watch": "vitest",
|
|
71
|
+
"typecheck": "tsc --noEmit",
|
|
72
|
+
"typecheck:all": "tsc --noEmit -p tsconfig.tests.json",
|
|
73
|
+
"version-packages": "changeset version"
|
|
74
74
|
},
|
|
75
75
|
"bin": {
|
|
76
76
|
"proxitor": "./dist/cli.mjs"
|