forked from inkeep/create-agents-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.17 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
{
"name": "inkeep-agents-quickstart",
"version": "0.1.0",
"description": "An Inkeep Agent Framework directory",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"turbo dev\" \"inkeep dev\" \"sleep 3 && open http://localhost:3000\" --names \"APIs,UI,Browser\" --prefix-colors \"blue,green,yellow\" --success first",
"dev:apis": "turbo dev",
"dev:ui": "inkeep dev",
"db:push": "drizzle-kit push",
"postinstall": "if [ \"$VERCEL\" = \"1\" ] && [ \"$SKIP_APP_INSTALL\" != \"1\" ]; then inkeep dev --export --output-dir ./apps/manage-ui && SKIP_APP_INSTALL=1 pnpm -C apps/manage-ui install --no-frozen-lockfile --ignore-scripts; fi"
},
"dependencies": {
"@inkeep/agents-core": "^0.8.7",
"@inkeep/agents-sdk": "^0.8.7",
"dotenv": "^16.0.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@inkeep/agents-cli": "^0.8.7",
"concurrently": "^8.2.0",
"drizzle-kit": "^0.31.4",
"tsx": "^4.19.0",
"turbo": "^2.5.5",
"wait-on": "^8.0.0"
},
"engines": {
"node": ">=22.x"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"keytar"
]
}
}