-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 KB
/
package.json
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
{
"name": "openai-zod-functions",
"version": "0.1.2",
"description": "OpenAI Function Calling in Typescript using Zod",
"author": "Matt Holden",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/holdenmatt/openai-zod-functions"
},
"keywords": ["openai", "zod", "functions", "function calling"],
"files": [
"dist"
],
"scripts": {
"build": "tsup --dts",
"test": "jest",
"publish": "np"
},
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": true,
"clean": true
},
"dependencies": {
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3",
"zod-validation-error": "^2.1.0"
},
"peerDependencies": {
"openai": ">= 4.20.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"openai": "^4.24.1",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"prettier": {
"printWidth": 90
}
}