-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
86 lines (86 loc) · 2.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "zod-gpt",
"description": "Get structured, fully typed JSON outputs from OpenAI and Anthropic LLMs",
"version": "0.16.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"zod",
"gpt",
"chatgpt",
"llama",
"llm",
"ai",
"ml",
"prompt",
"prompt engineering",
"openai"
],
"author": "David Zhang <david@aomni.com>",
"license": "MIT",
"homepage": "https://github.com/dzhng/zod-gpt",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dzhng/zod-gpt.git"
},
"bugs": {
"url": "https://github.com/dzhng/zod-gpt/issues"
},
"scripts": {
"setup": "husky install",
"build": "tsc --build --pretty",
"lint": "eslint src --ext ts,tsx,js,jsx --ignore-path .gitignore --fix",
"test": "jest --passWithNoTests",
"test:update": "jest -u --passWithNoTests",
"playground": "tsx playground"
},
"dependencies": {
"debug": "^4.3.4",
"jsonic": "^1.0.1",
"jsonrepair": "^3.4.0",
"lodash": "^4.17.21",
"tsx": "^4.7.1",
"type-fest": "^4.6.0",
"zod-to-json-schema": "^3.21.4"
},
"peerDependencies": {
"llm-api": "^1.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/debug": "^4.1.10",
"@types/jest": "^29.5.7",
"@types/jsonic": "^0.3.2",
"@types/lodash": "^4.14.200",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-universe": "^11.1.1",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.7.0",
"lint-staged": "^13.2.0",
"llm-api": "^1.6.0",
"prettier": "^2.8.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"zod": "^3.22.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext ts,tsx,js,jsx --fix --ignore-path .gitignore ",
"prettier --write"
],
"*.{json,md,css,scss}": [
"prettier --write"
]
}
}