-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.71 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
{
"name": "@literalai/client",
"version": "0.1.4",
"description": "",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup ./src",
"test": "jest --detectOpenHandles --runInBand --watchAll=false",
"prepare": "husky install",
"release": "./release.sh"
},
"author": "Literal AI",
"license": "Apache-2.0",
"files": [
"dist",
"package.json"
],
"devDependencies": {
"@ai-sdk/openai": "^0.0.24",
"@jest/types": "^29.6.3",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/jest": "^29.5.11",
"@types/mustache": "^4.2.5",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"ai": "^3.1.31",
"dotenv": "^16.3.1",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"llamaindex": "^0.3.15",
"openai": "^4.42.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.0-next.25",
"typescript": "^5.3.3",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.0"
},
"dependencies": {
"axios": "^1.6.2",
"form-data": "^4.0.0",
"mustache": "^4.2.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"openai": "4.x"
},
"optionalDependencies": {
"@ai-sdk/openai": "0.0.x",
"@langchain/openai": "0.x",
"ai": "3.x",
"langchain": "0.x",
"llamaindex": "0.3",
"zod-to-json-schema": "3.x"
}
}