-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 996 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "zed-openai-proxy",
"version": "0.0.2",
"description": "A simple proxy for Azure OpenAI integration with Zed",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"bin": {
"zed-openai-proxy": "./proxy.js"
},
"scripts": {
"start": "node --env-file=.env proxy.js",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"husky": "^9.1.7"
},
"lint-staged": {
"*": "npx @biomejs/biome check --no-errors-on-unmatched --files-ignore-unknown=true --fix --diagnostic-level=error"
},
"main": "proxy.js",
"repository": {
"type": "git",
"url": "git+https://github.com/JosephScript/zed-openai-proxy.git"
},
"keywords": ["zed", "zeditor", "ai", "nodejs", "proxy", "node"],
"author": "Joseph A. Szczesniak <hi@josephscript.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JosephScript/zed-openai-proxy/issues"
},
"homepage": "https://github.com/JosephScript/zed-openai-proxy#readme"
}