@openhoo/hoopilot 0.7.1 → 0.7.3
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 +6 -2
- package/dist/chunk-7GSQVYYT.js +221 -0
- package/dist/chunk-7GSQVYYT.js.map +1 -0
- package/dist/cli.js +473 -83
- package/dist/cli.js.map +1 -1
- package/dist/codexx.js +5 -161
- package/dist/codexx.js.map +1 -1
- package/dist/index.cjs +533 -155
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +532 -155
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openhoo/hoopilot",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"packageManager": "bun@1.3.14",
|
|
5
5
|
"description": "OpenAI-compatible local proxy for GitHub Copilot accounts.",
|
|
6
6
|
"repository": {
|
|
@@ -49,9 +49,10 @@
|
|
|
49
49
|
"test": "bun test",
|
|
50
50
|
"test:coverage": "bun test --coverage",
|
|
51
51
|
"typecheck": "tsc --noEmit",
|
|
52
|
-
"check": "bun run biome:check && bun run typecheck && bun run test:coverage && bun run build",
|
|
52
|
+
"check": "bun run biome:check && bun run typecheck && bun run test:coverage && bun run build && bun run pack:check",
|
|
53
53
|
"hooks:install": "if git rev-parse --git-dir >/dev/null 2>&1; then git config core.hooksPath .githooks; fi",
|
|
54
54
|
"prepare": "bun run hooks:install",
|
|
55
|
+
"pack:check": "bun scripts/check-pack.ts",
|
|
55
56
|
"prepack": "bun run build",
|
|
56
57
|
"verify": "bun run typecheck && bun run test:coverage && bun run build"
|
|
57
58
|
},
|