-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "elelem",
"version": "0.0.10",
"description": "Simple, opinionated, JSON-typed, and traced LLM framework for TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest --collect-coverage",
"format": "prettier --write src",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrhizor/elelem.git"
},
"keywords": [
"typescript",
"llm",
"openai",
"opentelemetry"
],
"author": "Jared Rhizor <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrhizor/elelem/issues"
},
"homepage": "https://github.com/jrhizor/elelem#readme",
"dependencies": {
"@anatine/zod-mock": "^3.13.3",
"@anthropic-ai/sdk": "^0.17.1",
"@faker-js/faker": "^8.2.0",
"@opentelemetry/api": "^1.6.0",
"@types/object-hash": "^3.0.5",
"cohere-ai": "^7.1.1",
"dotenv": "^16.3.1",
"exponential-backoff": "^3.1.1",
"ioredis": "^5.3.2",
"object-hash": "^3.0.0",
"openai": "^4.15.4",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.44.0",
"@opentelemetry/sdk-node": "^0.44.0",
"@opentelemetry/tracing": "^0.24.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
}
}