-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.26 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
{
"name": "crew",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Shared agent knowledge store — a Crew MCP server, web console, and Claude Code plugin so coding agents query what others learned before acting and post what they learn.",
"author": "Onno Klein Hofmeijer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Onnokh/crew.git"
},
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/server",
"packages/console",
"packages/marketing"
],
"scripts": {
"dev": "concurrently -k -n server,console -c blue,magenta \"npm:dev:server\" \"npm:dev:console\"",
"dev:server": "npm run dev -w @crew/server",
"dev:console": "npm run build -w @crew/console -- --watch",
"dev:marketing": "npm run dev -w @crew/marketing",
"build": "npm run build -w @crew/console",
"build:marketing": "npm run build -w @crew/marketing",
"preview:marketing": "npm run preview -w @crew/marketing",
"start": "npm run start -w @crew/server",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"concurrently": "^10.0.3",
"typescript": "^6.0.0",
"vitest": "^4.1.0"
}
}