forked from dexaai/openai-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.11 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "openai-fetch",
"version": "1.6.3",
"description": "OpenAI client powered by fetch",
"types": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"files": [
"dist"
],
"repository": "rileytomasek/openai-fetch",
"author": {
"name": "Riley Tomasek",
"email": "hi@rile.yt",
"url": "https://rile.yt"
},
"scripts": {
"build": "rm -rf dist && node build.js && tsc -b",
"lint": "eslint src",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn typecheck",
"release": "np",
"typecheck": "tsc"
},
"license": "MIT",
"private": false,
"dependencies": {
"ky": "^0.33.3",
"zod": "^3.21.2"
},
"devDependencies": {
"@types/node": "^18.14.6",
"dotenv": "^16.0.3",
"esbuild": "^0.17.11",
"eslint": "^8.35.0",
"eslint-config-hckrs": "^0.0.3",
"np": "^7.6.3",
"openai": "^3.2.1",
"prettier": "^2.8.4",
"tsx": "^3.12.3",
"type-fest": "^3.6.1",
"typescript": "^4.9.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"prettier": {
"singleQuote": true
}
}