forked from MagnivOrg/prompt-layer-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 811 Bytes
/
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
{
"name": "promptlayer",
"license": "MIT",
"version": "1.0.11",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/MagnivOrg/prompt-layer-js"
},
"scripts": {
"build": "tsup-node src/index.ts --format cjs,esm --minify --dts-resolve --clean --sourcemap --legacy-output",
"lint": "tsc",
"release": "npm run build && npm publish"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.20.8",
"@types/node": "^20.8.0",
"openai": "^4.48.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.49.1",
"@opentelemetry/sdk-node": "^0.52.1"
}
}