-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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
{
"name": "finetunedb-dev",
"version": "0.2.1",
"type": "module",
"description": "Client library for the FinetuneDB API",
"main": "./src/index.ts",
"publishConfig": {
"name": "finetunedb",
"access": "public",
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./openai": {
"import": "./openai.js",
"require": "./openai.cjs"
},
"./openai/mergeChunks": {
"import": "./openai/mergeChunks.js",
"require": "./openai/mergeChunks.cjs"
},
"./langchain": {
"import": "./langchain/langchainCallback.js",
"require": "./langchain/langchainCallback.cjs"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/finetunedb/finetunedb-node.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"langchain": "^0.0.202",
"openai": "^4.17.4"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.4.8",
"@types/node-fetch": "^2.6.4",
"dotenv": "^16.3.1",
"rollup": "^4.4.1",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2",
"vitest": "^0.33.0"
}
}