forked from Merit-Systems/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
package.json
File metadata and controls
68 lines (68 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
{
"name": "@merit-systems/echo-typescript-sdk",
"version": "1.0.23",
"description": "TypeScript SDK for Echo platform",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "npm run generate-api-types && tsup",
"dev": "tsup --watch",
"lint": "pnpx eslint src/**/*.ts",
"lint:fix": "pnpx eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"test": "vitest run",
"test:unit": "vitest run",
"test:watch": "vitest --watch",
"generate-api-types": "tsx scripts/generate-api-types.ts && pnpm format",
"update-models:openai": "tsx scripts/update-openai-models.ts",
"update-models:anthropic": "tsx scripts/update-anthropic-models.ts",
"update-models:gemini": "tsx scripts/update-gemini-models.ts",
"update-models:openrouter": "tsx scripts/update-openrouter-models.ts",
"update-models:groq": "tsx scripts/update-groq-models.ts",
"update-all-models": "pnpm run update-models:openai && pnpm run update-models:anthropic && pnpm run update-models:gemini && pnpm run update-models:openrouter && pnpm run update-models:groq",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"echo",
"typescript",
"sdk",
"api"
],
"author": "Merit Systems",
"license": "MIT",
"devDependencies": {
"@ai-sdk/gateway": "^1.0.12",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"dotenv": "^16.5.0",
"eslint": "^9.29.0",
"groq-sdk": "^0.33.0",
"tsup": "^8.5.0",
"tsx": "^4.19.2",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@ai-sdk/anthropic": "2.0.17",
"@ai-sdk/google": "2.0.14",
"@ai-sdk/groq": "2.0.17",
"@ai-sdk/openai": "2.0.32",
"@ai-sdk/xai": "2.0.16",
"@openrouter/ai-sdk-provider": "1.2.0",
"ai": "5.0.47"
}
}