-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.74 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
{
"name": "murmur",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node --import tsx src/index.ts",
"typecheck": "tsc -b packages/contracts-types && tsc --noEmit -p tsconfig.json && pnpm -r --if-present run typecheck",
"lint": "eslint . && bash scripts/check-unused-exports.sh",
"test": "vitest run --coverage && pnpm -r --if-present --filter='!.' run test",
"test:unit": "vitest run",
"build": "pnpm -r --if-present run build",
"grep:all": "bash scripts/grep-all.sh",
"grep-no-accepted-key": "bash scripts/grep-no-accepted-key.sh",
"grep-no-naked-eq-in-auth": "bash scripts/grep-no-naked-eq-in-auth.sh",
"grep-uses-timingsafeequal": "bash scripts/grep-uses-timingsafeequal.sh",
"grep-no-token-logged": "bash scripts/grep-no-secrets-logged.sh",
"migrate": "tsx src/db/cli.ts",
"migrate:memory": "tsx src/db/cli.ts --memory"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@murmur/contracts-types": "workspace:*",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"better-sqlite3": "^12.9.0",
"undici": "^7.6.0",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@hono/node-server": "1.13.7",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "22.9.0",
"@vitest/coverage-v8": "2.1.9",
"eslint": "9.15.0",
"eslint-plugin-unused-imports": "4.1.4",
"hono": "4.6.12",
"ts-prune": "0.10.3",
"tsx": "4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "8.16.0",
"vitest": "2.1.9"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"better-sqlite3"
]
}
}