This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
generated from firtoz/typescript-modern-yarn-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.64 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
{
"name": "@firtoz/openai-wrappers",
"version": "3.1.1",
"description": "Wrappers for completion and chatCompletion. Supports streaming and basic error handling.",
"scripts": {
"build": "yarn tsc && echo build complete",
"release": "yarn build && changeset publish",
"test": "eslint . && vitest run",
"vitest": "vitest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typescript",
"openai",
"text completion",
"text-davinci-003",
"chatgpt-api",
"gpt-3.5-turbo"
],
"files": [
"lib/*",
"src/*"
],
"types": "lib/index.d.ts",
"main": "lib/index.js",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/eslint": "^8.44.0",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "5.1.6",
"vitest": "^0.33.0"
},
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.4.0",
"chatgpt-plugin": "^0.1.2",
"gpt-tokenizer": "^2.1.2",
"lodash": "^4.17.21",
"openai": "^3.3.0",
"openapi-types": "^12.1.3",
"yaml": "^2.3.1"
},
"resolutions": {
"axios": "^1.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firtoz/openai-wrappers.git"
},
"bugs": {
"url": "https://github.com/firtoz/openai-wrappers/issues"
},
"author": "firtoz",
"license": "MIT",
"homepage": "https://github.com/firtoz/openai-wrappers#readme"
}