-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "@libretto/openai",
"main": "lib/src/index.js",
"version": "1.3.1",
"types": "lib/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/libretto-ai/openai-ts.git"
},
"homepage": "https://www.getlibretto.com/",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib/",
"prepublish": "npm run build",
"prettier": "prettier .",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"test": "jest"
},
"files": [
"lib/src"
],
"devDependencies": {
"@babel/traverse": "^7.26.4",
"@faker-js/faker": "^9.3.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"peerDependencies": {
"openai": "^4.68.4"
},
"dependencies": {
"@libretto/redact-pii-light": "^1.0.1",
"limiter": "^2.1.0",
"p-limit": "^3.1.0",
"p-queue": "^6.0.0"
}
}