-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.75 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.75 KB
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
68
69
70
71
72
73
74
75
76
{
"name": "agentlify-js",
"version": "1.0.0",
"description": "Official JavaScript/TypeScript library for the Agentlify API - OpenAI-compatible interface for intelligent model routing",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md"
],
"homepage": "https://agentlify.co",
"scripts": {
"build": "rollup -c && cp src/types.d.ts dist/index.d.ts",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.js",
"prepublishOnly": "npm run build",
"example": "node examples/basic.js"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js"
]
},
"keywords": [
"ai",
"openai",
"gpt",
"claude",
"llm",
"model-routing",
"chat",
"completions",
"streaming",
"function-calling",
"multimodal"
],
"author": "Agentlify Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agentlifylabs/agentlify-js"
},
"bugs": {
"url": "https://github.com/agentlifylabs/agentlify-js/issues"
},
"dependencies": {
"axios": "^1.6.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@types/node": "^20.0.0",
"axios-mock-adapter": "^2.1.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"rollup": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}