@victor-software-house/pi-openai-proxy 0.0.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/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@victor-software-house/pi-openai-proxy",
3
+ "version": "0.0.1",
4
+ "description": "Local OpenAI-compatible HTTP proxy built on pi's SDK",
5
+ "license": "MIT",
6
+ "author": "Victor Software House",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/victor-software-house/pi-openai-proxy.git"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public",
13
+ "provenance": true
14
+ },
15
+ "keywords": [
16
+ "openai",
17
+ "proxy",
18
+ "pi-coding-agent",
19
+ "llm",
20
+ "gateway"
21
+ ],
22
+ "engines": {
23
+ "node": ">=20"
24
+ },
25
+ "type": "module",
26
+ "main": "dist/index.mjs",
27
+ "bin": {
28
+ "pi-openai-proxy": "dist/index.mjs"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "scripts": {
34
+ "dev": "bun src/index.ts",
35
+ "build": "tsdown",
36
+ "start": "node dist/index.js",
37
+ "typecheck": "tsc --noEmit",
38
+ "lint": "bun run lint:biome && bun run lint:oxlint",
39
+ "lint:biome": "biome check .",
40
+ "lint:oxlint": "oxlint --import-plugin --type-aware --tsconfig=./tsconfig.json src/",
41
+ "lint:fix": "biome check --write .",
42
+ "format": "biome format --write .",
43
+ "test": "bun test",
44
+ "prepack": "bun run build",
45
+ "prepublishOnly": "bun test && bun run build"
46
+ },
47
+ "dependencies": {
48
+ "@mariozechner/pi-ai": "^0.62.0",
49
+ "@mariozechner/pi-coding-agent": "^0.62.0",
50
+ "hono": "^4.12.8",
51
+ "zod": "^4.3.6"
52
+ },
53
+ "devDependencies": {
54
+ "@biomejs/biome": "^2.4.8",
55
+ "@commitlint/cli": "^20.5.0",
56
+ "@commitlint/config-conventional": "^20.5.0",
57
+ "@limegrass/eslint-plugin-import-alias": "^1.6.1",
58
+ "@semantic-release/changelog": "^6.0.3",
59
+ "@semantic-release/git": "^10.0.1",
60
+ "@semantic-release/github": "^12.0.6",
61
+ "@semantic-release/npm": "^13.1.5",
62
+ "@types/bun": "^1.3.11",
63
+ "@types/node": "^25.5.0",
64
+ "eslint-plugin-zod": "^3.5.0",
65
+ "lefthook": "^2.1.4",
66
+ "oxlint": "^1.56.0",
67
+ "oxlint-tsgolint": "^0.17.1",
68
+ "semantic-release": "^25.0.3",
69
+ "tsdown": "^0.21.4",
70
+ "typescript": "^5.9.3"
71
+ }
72
+ }