-
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.61 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.61 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": "@picahq/toolkit",
"version": "1.0.3",
"description": "Pica tools for the Vercel AI SDK",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"example:basic": "tsx examples/basic-agent.ts",
"example:knowledge": "tsx examples/knowledge-agent.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build:clean"
},
"keywords": [
"pica",
"ai",
"vercel",
"tool",
"integration"
],
"homepage": "https://docs.picaos.com/toolkit/vercel-ai-sdk",
"bugs": {
"url": "https://github.com/picahq/toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/picahq/toolkit.git"
},
"license": "GPL-3.0",
"author": "@picahq",
"dependencies": {
"axios": "^1.12.1",
"chalk": "^4.1.2",
"form-data": "^4.0.4"
},
"peerDependencies": {
"@ai-sdk/openai": "^2.0.30",
"ai": "^5.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@ai-sdk/openai": "^2.0.30",
"@types/jest": "^29.5.14",
"@types/node": "^24.3.3",
"ai": "^5.0.44",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.6.0",
"zod": "^4.1.8"
}
}