proxitor 0.1.0 → 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/dist/cli.cjs +0 -0
- package/package.json +21 -21
package/dist/cli.cjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "proxitor",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Lightweight proxy for routing CLI requests (claude-code, codex) to OpenRouter",
|
|
6
|
-
"bin": "./dist/cli.mjs",
|
|
7
6
|
"files": [
|
|
8
7
|
"dist"
|
|
9
8
|
],
|
|
@@ -22,24 +21,6 @@
|
|
|
22
21
|
"main": "./dist/index.cjs",
|
|
23
22
|
"module": "./dist/index.mjs",
|
|
24
23
|
"types": "./dist/index.d.mts",
|
|
25
|
-
"scripts": {
|
|
26
|
-
"prepare": "lefthook install",
|
|
27
|
-
"build": "tsdown",
|
|
28
|
-
"dev": "tsdown --watch",
|
|
29
|
-
"lint": "biome lint ./src",
|
|
30
|
-
"lint:fix": "biome lint --fix ./src",
|
|
31
|
-
"format": "biome format --write ./src",
|
|
32
|
-
"format:check": "biome format ./src",
|
|
33
|
-
"check:biome": "biome check ./src",
|
|
34
|
-
"typecheck": "tsc --noEmit",
|
|
35
|
-
"test": "vitest run",
|
|
36
|
-
"test:watch": "vitest",
|
|
37
|
-
"test:coverage": "vitest run --coverage",
|
|
38
|
-
"check": "npm run typecheck && npm run check:biome && npm run test",
|
|
39
|
-
"prepublishOnly": "npm run build",
|
|
40
|
-
"version-packages": "changeset version",
|
|
41
|
-
"release": "changeset publish"
|
|
42
|
-
},
|
|
43
24
|
"keywords": [
|
|
44
25
|
"proxy",
|
|
45
26
|
"openrouter",
|
|
@@ -81,5 +62,24 @@
|
|
|
81
62
|
"tsdown": "^0.22.1",
|
|
82
63
|
"typescript": "^6.0.3",
|
|
83
64
|
"vitest": "^4.1.8"
|
|
65
|
+
},
|
|
66
|
+
"scripts": {
|
|
67
|
+
"build": "tsdown",
|
|
68
|
+
"dev": "tsdown --watch",
|
|
69
|
+
"lint": "biome lint ./src",
|
|
70
|
+
"lint:fix": "biome lint --fix ./src",
|
|
71
|
+
"format": "biome format --write ./src",
|
|
72
|
+
"format:check": "biome format ./src",
|
|
73
|
+
"check:biome": "biome check ./src",
|
|
74
|
+
"typecheck": "tsc --noEmit",
|
|
75
|
+
"test": "vitest run",
|
|
76
|
+
"test:watch": "vitest",
|
|
77
|
+
"test:coverage": "vitest run --coverage",
|
|
78
|
+
"check": "npm run typecheck && npm run check:biome && npm run test",
|
|
79
|
+
"version-packages": "changeset version",
|
|
80
|
+
"release": "changeset publish"
|
|
81
|
+
},
|
|
82
|
+
"bin": {
|
|
83
|
+
"proxitor": "./dist/cli.mjs"
|
|
84
84
|
}
|
|
85
|
-
}
|
|
85
|
+
}
|