forked from instructor-ai/instructor-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 933 Bytes
/
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
{
"name": "instructor-js",
"version": "0.0.1",
"description": "structured outputs for llms",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "tsc",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jxnl/instructor-js.git"
},
"keywords": [
"llm",
"structured",
"outputs",
"zod"
],
"author": "Jason Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/jxnl/instructor-js/issues"
},
"homepage": "https://github.com/jxnl/instructor-js#readme",
"dependencies": {
"openai": "^4.24.1",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3"
},
"devDependencies": {
"@types/node": "^20.10.6",
"typescript": "^5.3.3"
}
}