-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.13 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.13 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
{
"name": "@goondocks/myco-monorepo",
"private": true,
"version": "0.22.4",
"description": "Myco monorepo workspace root",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @goondocks/myco-shared && npm run build -w @goondocks/myco && npm run build:packages",
"build:packages": "npm run build -w @goondocks/myco-team && npm run build -w @goondocks/myco-collective && npm run build -w @goondocks/myco-hub",
"build:core": "npm run build:core -w @goondocks/myco",
"build:ui": "npm run build:ui -w @goondocks/myco",
"build:watch": "tsc --watch",
"build:types": "tsc",
"check:workers": "npm run check --prefix packages/myco-team/worker && npm run check --prefix packages/myco-collective/worker",
"test": "node scripts/run-bun-tests.mjs",
"test:fast": "MYCO_TEST_PROFILE=fast node scripts/run-bun-tests.mjs",
"test:integration": "MYCO_TEST_PROFILE=integration node scripts/run-bun-tests.mjs",
"test:watch": "bun test --watch",
"lint": "tsc --noEmit && npm run check:workers"
},
"repository": {
"type": "git",
"url": "https://github.com/goondocks-co/myco.git"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.119",
"@anthropic-ai/sdk": "^0.91.1",
"@inquirer/prompts": "^8.4.2",
"@modelcontextprotocol/sdk": "^1.28.0",
"@openai/agents": "^0.8.5",
"chokidar": "^5.0.0",
"gray-matter": "^4.0.3",
"semver": "^7.7.4",
"yaml": "^2.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.15.0",
"@tanstack/react-query": "^5.100.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"@vscode/ripgrep": "^1.15.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jsdom": "^29.1.0",
"lucide-react": "^1.11.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.2",
"sqlite-vec": "^0.1.8",
"tailwind-merge": "^3.5.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^6.0.3"
}
}