-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.54 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.54 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
106
107
108
109
110
111
112
113
114
{
"name": "gentrace",
"version": "0.14.1",
"description": "The official TypeScript library for the Gentrace API",
"author": "Gentrace <support@gentrace.ai>",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"type": "commonjs",
"repository": "github:gentrace/gentrace-node",
"license": "MIT",
"packageManager": "yarn@1.22.22",
"files": [
"**/*"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "./scripts/test",
"example": "dotenv -- tsx ",
"build": "./scripts/build",
"prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1",
"format": "./scripts/format",
"prepare": "if ./scripts/utils/check-is-in-git-install.sh; then ./scripts/build && ./scripts/utils/git-swap.sh; fi",
"tsn": "ts-node -r tsconfig-paths/register",
"lint": "./scripts/lint",
"fix": "./scripts/format"
},
"devDependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/openai": "^1.3.22",
"@anthropic-ai/sdk": "^0.32.1",
"@arethetypeswrong/cli": "^0.17.0",
"@mastra/core": "^0.10.2",
"@mastra/memory": "^0.10.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/baggage-span-processor": "^0.4.0",
"@opentelemetry/context-async-hooks": "^2.0.0",
"@opentelemetry/core": "^2.0.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.200.0",
"@opentelemetry/resources": "^2.0.0",
"@opentelemetry/sdk-node": "^0.200.0",
"@opentelemetry/sdk-trace-node": "^2.0.0",
"@opentelemetry/semantic-conventions": "^1.32.0",
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@traceloop/instrumentation-openai": "^0.13.0",
"@types/ci-info": "^2.0.0",
"@types/cli-progress": "^3.11.5",
"@types/jest": "^29.4.0",
"@types/json-stringify-safe": "^5.0.3",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"ai": "^4.3.16",
"dotenv-cli": "^8.0.0",
"eslint": "^9.20.1",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-unused-imports": "^4.1.4",
"iconv-lite": "^0.6.3",
"jest": "^29.4.0",
"msw": "^2.7.5",
"openai": "^4.96.0",
"prettier": "^3.0.0",
"publint": "^0.2.12",
"ts-jest": "^29.1.0",
"ts-node": "^10.5.0",
"tsc-multi": "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.8/tsc-multi.tgz",
"tsconfig-paths": "^4.0.0",
"tsx": "^4.19.3",
"typescript": "5.8.3",
"typescript-eslint": "8.31.1",
"zod": "^3.25.51"
},
"peerDependencies": {
"@opentelemetry/api": ">=1.0.0 <2.0.0",
"@opentelemetry/baggage-span-processor": ">=0.1.0 <0.5.0",
"@opentelemetry/context-async-hooks": ">=1.0.0 <3.0.0",
"@opentelemetry/core": ">=1.0.0 <3.0.0",
"@opentelemetry/exporter-trace-otlp-http": ">=0.49.0 <0.300.0",
"@opentelemetry/resources": ">=1.0.0 <3.0.0",
"@opentelemetry/sdk-node": ">=0.49.0 <0.300.0",
"@opentelemetry/sdk-trace-node": ">=1.0.0 <3.0.0",
"@opentelemetry/semantic-conventions": ">=1.0.0 <2.0.0"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*.mjs": {
"default": "./dist/*.mjs"
},
"./*.js": {
"default": "./dist/*.js"
},
"./*": {
"import": "./dist/*.mjs",
"require": "./dist/*.js"
}
},
"dependencies": {
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"ci-info": "^4.3.0",
"cli-highlight": "^2.1.11",
"cli-progress": "^3.12.0",
"json-stringify-safe": "^5.0.1"
},
"engines": {
"node": ">= 20"
}
}