generated from rectangular-labs/vite-plus-monorepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 966 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 966 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
32
33
{
"name": "@trymeka/examples",
"private": true,
"version": "0.0.1",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"clean": "git clean -xdf .turbo node_modules dist .cache",
"format": "pnpx @biomejs/biome@1.9.4 format . --write",
"lint": "pnpx @biomejs/biome@1.9.4 lint . --write",
"typecheck": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.1",
"@ai-sdk/google": "^2.0.3",
"@ai-sdk/openai": "^2.0.5",
"@trymeka/ai-provider-vercel": "workspace:*",
"@trymeka/computer-provider-anchor-browser": "workspace:*",
"@trymeka/computer-provider-e2b": "workspace:*",
"@trymeka/computer-provider-scrapybara": "workspace:*",
"@trymeka/core": "workspace:*",
"zod": "^3.24.4"
},
"devDependencies": {
"@trymeka/typescript": "workspace:*",
"typescript": "^5.8.3"
}
}