-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.25 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.25 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
{
"name": "engram",
"version": "0.1.0",
"description": "MCP Server: 读取多个 AI 编程助手的会话日志,实现跨工具历史上下文共享",
"type": "module",
"engines": {
"node": ">=22 <27"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"generate:fixtures": "tsx scripts/generate-test-fixtures.ts",
"generate:mcp-contract-fixtures": "TZ=UTC tsx scripts/gen-mcp-contract-fixtures.ts",
"generate:adapter-parity-fixtures": "tsx scripts/gen-adapter-parity-fixtures.ts",
"check:adapter-parity-fixtures": "tsx scripts/check-adapter-parity-fixtures.ts",
"generate:parent-detection-fixtures": "tsx scripts/gen-parent-detection-fixtures.ts",
"generate:indexer-parity-fixtures": "tsx scripts/gen-indexer-parity-fixtures.ts",
"check:fixtures": "tsx scripts/check-fixture-schema.ts",
"screenshots:compare": "tsx scripts/screenshot-compare.ts",
"baselines:generate": "tsx scripts/baselines-generate.ts",
"baselines:update": "tsx scripts/baselines-update.ts",
"release:verify": "bash macos/scripts/release-verify.sh",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"knip": "knip --no-config-hints",
"prepare": "husky"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"@hono/node-server": "^1.19.10",
"@modelcontextprotocol/sdk": "^1.10.2",
"better-sqlite3": "^12.10.0",
"chokidar": "^4.0.3",
"hono": "^4.12.21",
"openai": "^6.25.0",
"sqlite-vec": "0.1.9",
"yaml": "^2.8.3"
},
"optionalDependencies": {
"@huggingface/transformers": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.2.4",
"husky": "^9.1.7",
"knip": "^6.3.1",
"lint-staged": "^16.4.0",
"pixelmatch": "^6.0.0",
"sharp": "^0.33.5",
"ssim.js": "^3.5.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.7"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"biome check --write --no-errors-on-unmatched"
]
}
}