-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "refuel-sdk",
"version": "0.23.0",
"description": "Label, clean and enrich text datasets with LLMs",
"main": "dist/index.cjs.js",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"docs": "typedoc --plugin typedoc-plugin-markdown --excludeInternal --out ./docs ./src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/refuel-ai/refuel-sdk.git"
},
"keywords": [
"openai",
"large language models",
"llm",
"gpt",
"anthropic",
"claude",
"gemini"
],
"author": "Refuel.ai",
"license": "MIT",
"bugs": {
"url": "https://github.com/refuel-ai/refuel-sdk/issues"
},
"homepage": "https://www.refuel.ai/blog-posts/introducing-refuel-cloud",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^22.10.2",
"rollup": "^4.24.4",
"rollup-plugin-typescript2": "^0.36.0",
"typedoc": "^0.27.5",
"typedoc-plugin-markdown": "^4.3.2",
"typedoc-plugin-md": "^0.4.3",
"typescript": "^5.6.3"
}
}