-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 766 Bytes
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
{
"name": "@elizaos-plugins/plugin-thinking",
"version": "0.1.0",
"description": "Claude 3.7 thinking model support for Eliza agents",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"files": [
"dist"
],
"dependencies": {
"@ai-sdk/anthropic": "^1.1.6",
"@anthropic-ai/sdk": "^0.39.0",
"@elizaos/core": "^0.25.9",
"ai": "^4.1.54",
"zod": "^3.24.2"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^3.0.5",
"@vitest/coverage-v8": "^3.0.5"
}
}