-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 825 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
34
35
36
37
{
"name": "hiring",
"description": "A hiring agent interviews the applicant agent instead of a traditional application.",
"version": "0.0.1",
"main": "index.js",
"type": "module",
"scripts": {
"build": "agentuity build",
"dev": "agentuity dev",
"format": "biome format --write .",
"lint": "biome lint .",
"prestart": "agentuity bundle",
"start": "bun run .agentuity/index.js"
},
"keywords": [
"agentuity",
"agent",
"ai",
"ai agent",
"bun"
],
"private": true,
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.15"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@agentuity/sdk": "^0.0.121",
"@ai-sdk/anthropic": "^1.2.12",
"ai": "^4.3.16",
"zod": "^3.25.49"
},
"module": "index.ts"
}