-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.59 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
{
"name": "@teaql/ai-sdk",
"version": "0.1.0",
"description": "Generated, typed, auditable business tools for Vercel AI SDK agents",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc --noEmit && eslint .",
"example": "tsx examples/school-agent/demo.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "npm run build && npm test"
},
"keywords": [
"teaql",
"vercel-ai-sdk",
"ai-sdk",
"agent",
"tools",
"typed-tools",
"database",
"audit"
],
"author": "TeaQL",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/teaql/teaql-ai-sdk.git"
},
"bugs": {
"url": "https://github.com/teaql/teaql-ai-sdk/issues"
},
"homepage": "https://teaql.io",
"sideEffects": false,
"engines": {
"node": ">=22"
},
"peerDependencies": {
"@teaql/teaql": ">=0.1.7 <1",
"ai": ">=7 <8",
"zod": ">=3.25.76 <5"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@teaql/teaql": "^0.1.7",
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^24.0.0",
"ai": "^7.0.66",
"better-sqlite3": "^11.10.0",
"eslint": "^9.39.0",
"tsx": "^4.23.12",
"typescript": "^5.9.0",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.0",
"zod": "^4.4.3"
},
"publishConfig": {
"access": "public"
}
}