-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "@getzep/zep-cloud",
"version": "2.1.1",
"private": false,
"repository": "https://github.com/getzep/zep-js",
"description": "Zep: Fast, scalable building blocks for production LLM apps",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"format": "prettier . --write --ignore-unknown",
"build": "tsc",
"prepack": "yarn build && cp -rv dist/. .",
"test": "jest"
},
"dependencies": {
"form-data": "4.0.0",
"formdata-node": "^6.0.3",
"node-fetch": "2.7.0",
"qs": "6.11.2",
"url-join": "4.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "29.5.5",
"@types/node": "17.0.33",
"@types/node-fetch": "2.6.9",
"@types/qs": "6.9.8",
"@types/url-join": "4.0.1",
"@types/uuid": "^10.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "2.7.1",
"ts-jest": "29.1.1",
"typescript": "4.6.4",
"uuid": "^10.0.0",
"nock": "^13.5.4",
"@faker-js/faker": "^8.4.1"
}
}