-
-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "@savoir/monorepo",
"private": true,
"type": "module",
"license": "MIT",
"description": "Open source file-system and knowledge based agent template",
"author": "HugoRCD",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel-labs/knowledge-agent-template.git"
},
"bugs": {
"url": "https://github.com/vercel-labs/knowledge-agent-template/issues"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "turbo run build --filter='./packages/*'",
"build": "turbo run build",
"dev": "turbo run dev",
"dev:app": "turbo run dev --filter=@savoir/app",
"dev:gateway": "curl -X GET http://localhost:3000/api/discord/gateway",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"automd": "automd",
"workflow": "turbo run workflow:web --filter=@savoir/app"
},
"devDependencies": {
"@hrcd/eslint-config": "^3.0.3",
"automd": "^0.4.3",
"playwright": "^1.58.2",
"turbo": "^2.8.3"
},
"packageManager": "bun@1.3.14",
"overrides": {
"minimatch": "^10.0.1"
}
}