-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.1 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.1 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
{
"name": "promptlayer",
"license": "MIT",
"version": "1.3.2",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"vendor/claude-agents",
"vendor/claude-agents/trace/.claude-plugin",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"./claude-agents": {
"types": "./dist/claude-agents.d.ts",
"require": "./dist/claude-agents.js",
"import": "./dist/esm/claude-agents.js"
},
"./openai-agents": {
"types": "./dist/openai-agents.d.ts",
"require": "./dist/openai-agents.js",
"import": "./dist/esm/openai-agents.js"
}
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/MagnivOrg/prompt-layer-js"
},
"scripts": {
"build": "tsup-node",
"lint": "tsc",
"test": "vitest run",
"vendor:claude-agents": "node scripts/vendor-claude-agents-plugin.mjs",
"release": "npm run build && npm publish"
},
"devDependencies": {
"@anthropic-ai/bedrock-sdk": "^0.23.0",
"@anthropic-ai/sdk": "^0.57.0",
"@anthropic-ai/vertex-sdk": "^0.11.5",
"@aws-sdk/client-bedrock-runtime": "^3.864.0",
"@google/genai": "^1.45.0",
"@mistralai/mistralai": "^1.7.5",
"@openai/agents": "^0.7.2",
"@types/ably": "^1.0.0",
"@types/node": "^20.8.0",
"@types/nunjucks": "^3.2.6",
"openai": "^6.7.0",
"tsup": "^8.5.1",
"typescript": "^5.2.2",
"vitest": "^2.1.9",
"zod": "^4.3.6"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.49.1",
"@opentelemetry/sdk-node": "^0.52.1",
"ably": "^2.4.1",
"centrifuge": "^5.5.2",
"nunjucks": "^3.2.4",
"p-retry": "^6.2.0"
},
"peerDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.1",
"@openai/agents": "^0.7.2"
},
"peerDependenciesMeta": {
"@anthropic-ai/claude-agent-sdk": {
"optional": true
},
"@openai/agents": {
"optional": true
}
}
}