-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.14 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
{
"name": "commy",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"packages/*",
"clients/*"
],
"packageManager": "bun@1.3.13",
"bin": "./packages/mcp/server.ts",
"scripts": {
"prepare": "git config core.hooksPath .hooks && effect-language-service patch",
"build": "bun build packages/mcp/server.ts --target=node --outfile packages/mcp/dist/server.js && bun build clients/claude-code/hooks/inject-session-id.ts --target=node --outfile clients/claude-code/dist/inject-session-id.js",
"pack:npm": "bun scripts/assemble-npm-package.ts",
"start": "bun install --no-summary && bun packages/mcp/server.ts",
"check": "bun install --no-summary && bunx turbo run test",
"test": "[ -n \"$TURBO_HASH\" ] || { echo 'Use bun run check (via turbo) instead of bun run test directly' >&2; exit 1; } && bun test",
"test:hermes": "[ -n \"$TURBO_HASH\" ] || { echo 'Use bun run check (via turbo) instead of bun run test:hermes directly' >&2; exit 1; } && clients/hermes/scripts/test.sh",
"test:live": "bun test --path-ignore-patterns='' --timeout 45000 packages/zulip/realm.live.test.ts packages/zulip/contract.live.test.ts packages/mcp/server.live.test.ts",
"typecheck": "[ -n \"$TURBO_HASH\" ] || { echo 'Use bun run check (via turbo) instead of bun run typecheck directly' >&2; exit 1; } && tsc --noEmit",
"lint": "[ -n \"$TURBO_HASH\" ] || { echo 'Use bun run check (via turbo) instead of bun run lint directly' >&2; exit 1; } && bunx biome check .",
"lint:fix": "bunx biome check --fix ."
},
"dependencies": {
"@commy/core": "workspace:*",
"@commy/mcp": "workspace:*",
"@commy/memory": "workspace:*",
"@commy/zulip": "workspace:*",
"@effect/platform": "0.96.2",
"@effect/platform-node": "0.107.0",
"@modelcontextprotocol/sdk": "1.29.0",
"effect": "3.21.4"
},
"overrides": {
"undici": "^7.29.0",
"hono": "^4.12.31",
"ws": "^8.21.1",
"fast-uri": "^4.1.1"
},
"devDependencies": {
"@commy/testing": "workspace:*",
"@biomejs/biome": "2.5.2",
"@effect/language-service": "0.86.6",
"bun-types": "1.3.14",
"turbo": "2.10.6",
"typescript": "6.0.3"
}
}