-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "@formula-monks/kurt-open-ai",
"description": "OpenAI plugin for Kurt - A wrapper for AI SDKs, for building LLM-agnostic structured AI applications",
"license": "MIT",
"version": "1.0.0",
"homepage": "https://github.com/FormulaMonks/kurt",
"repository": {
"type": "git",
"url": "https://github.com/FormulaMonks/kurt.git",
"directory": "packages/kurt-open-ai"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"test": "jest",
"build": "tsc --build",
"prepack": "pnpm run build",
"format": "pnpm biome format --write .",
"lint": "pnpm biome lint --apply .",
"check": "pnpm biome check .",
"prepublish": "../../scripts/interpolate-example-code.sh README.md",
"release": "pnpm exec semantic-release"
},
"release": {
"branches": ["main"],
"extends": "semantic-release-monorepo"
},
"dependencies": {
"@formula-monks/kurt": "^1.5.0",
"openai": "4.85.1",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^18.19.32",
"jest": "^29.7.0",
"semantic-release": "^23.0.8",
"semantic-release-monorepo": "^8.0.2",
"ts-jest": "^29.1.2",
"type-fest": "^4.18.1",
"typescript": "^5.4.5",
"yaml": "^2.4.2"
}
}