-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "@jakub.knejzlik/openai-toolkit",
"version": "0.0.4",
"description": "A lightweight wrapper library for simplifying OpenAI API interactions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"test:watch": "vitest --watch",
"prepublishOnly": "tsc",
"build": "tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jakubknejzlik/openai-toolkit.git"
},
"keywords": [
"sql",
"query",
"builder",
"serialization"
],
"author": "Jakub Knejzlik",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubknejzlik/openai-toolkit/issues"
},
"homepage": "https://github.com/jakubknejzlik/openai-toolkit#readme",
"peerDependencies": {
"openai": "^4.55.4"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"openai": "^4.55.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-live": "^4.1.5",
"storybook": "^8.1.6",
"ts-jest": "^29.1.1",
"vite": "^4.5.1",
"vitest": "^1.6.0"
},
"dependencies": {
"p-retry": "^6.2.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.0"
}
}