-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.5 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "aden-ts",
"version": "0.2.3",
"description": "LLM Observability & Cost Control SDK - Real-time usage tracking, budget enforcement, and cost control for OpenAI, Anthropic, and Gemini",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"examples": "tsx examples/run-all.ts",
"example": "tsx",
"prepublishOnly": "npm run build"
},
"keywords": [
"openai",
"gemini",
"anthropic",
"claude",
"dify",
"llm",
"metering",
"usage",
"billing",
"observability",
"tokens",
"cost",
"budget",
"control"
],
"author": "Aden <hello@aden.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adenhq/aden-ts.git"
},
"bugs": {
"url": "https://github.com/adenhq/aden-ts/issues"
},
"homepage": "https://github.com/adenhq/aden-ts#readme",
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.20.0",
"@google/genai": ">=0.1.0",
"@google/generative-ai": ">=0.1.0",
"dify-client": ">=2.0.0",
"openai": ">=4.0.0"
},
"peerDependenciesMeta": {
"openai": {
"optional": true
},
"@google/generative-ai": {
"optional": true
},
"@google/genai": {
"optional": true
},
"@anthropic-ai/sdk": {
"optional": true
},
"dify-client": {
"optional": true
}
},
"devDependencies": {
"@ai-sdk/anthropic": "^2.0.56",
"@ai-sdk/google": "^2.0.49",
"@ai-sdk/openai": "^2.0.88",
"@anthropic-ai/sdk": "^0.27.0",
"@google/generative-ai": "^0.21.0",
"@langchain/anthropic": "^0.3.33",
"@langchain/core": "^0.3.79",
"@langchain/google-genai": "^0.2.18",
"@langchain/openai": "^0.6.16",
"@llamaindex/anthropic": "^0.3.26",
"@llamaindex/openai": "^0.4.22",
"@mastra/core": "^0.24.9",
"@types/node": "^20.10.0",
"@types/ws": "^8.18.1",
"ai": "^5.0.115",
"dify-client": "^3.0.0",
"dotenv": "^17.2.3",
"llamaindex": "^0.12.1",
"openai": "^4.70.0",
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0",
"zod": "^3.25.76"
},
"dependencies": {
"ws": "^8.18.3"
}
}