-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.42 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
63
64
65
66
67
68
{
"name": "@goondocks/myco-monorepo",
"private": true,
"version": "0.0.0-dev",
"description": "Myco monorepo workspace root",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @goondocks/myco-shared && npm run build -w @goondocks/myco",
"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",
"typecheck:ui": "npm run typecheck:ui -w @goondocks/myco",
"test": "node scripts/run-bun-tests.mjs",
"test:debug": "node scripts/run-bun-tests.mjs --bail=1 --only-failures",
"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:skills": "tsx packages/myco/scripts/lint-skill-content.ts",
"lint:skills:strict": "tsx packages/myco/scripts/lint-skill-content.ts --strict",
"lint": "npm run lint:skills:strict && tsc --noEmit && npm run typecheck:ui && npm run check:workers"
},
"repository": {
"type": "git",
"url": "https://github.com/goondocks-co/myco.git"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.207",
"@anthropic-ai/sdk": "^0.115.0",
"@inquirer/prompts": "^8.5.2",
"@modelcontextprotocol/sdk": "^1.28.0",
"@openai/agents": "^0.13.5",
"chokidar": "^5.0.0",
"gray-matter": "^4.0.3",
"openai": "^6.46.0",
"semver": "^7.8.5",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.18.4",
"@tanstack/react-query": "^5.101.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.1",
"@types/semver": "^7.7.1",
"@vscode/ripgrep": "1.18.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jsdom": "^30.0.0",
"lucide-react": "^1.27.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router-dom": "^7.18.1",
"sqlite-vec": "^0.1.8",
"tailwind-merge": "^3.6.0",
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"typescript-v6": "npm:typescript@^6.0.3"
}
}