-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.78 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.78 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
69
70
71
72
73
74
75
76
{
"name": "synaps",
"version": "0.10.10",
"description": "Codebase intelligence for AI coding agents — MCP server with git co-change analysis, convention detection, execution flows, and type-aware analysis",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"synaps": "dist/bin/synaps.js"
},
"files": [
"dist/",
"hooks/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.18.0"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/msiric/synaps"
},
"keywords": [
"agents-md",
"claude-md",
"cursorrules",
"ai-context",
"codebase-intelligence",
"typescript",
"ast",
"conventions"
],
"homepage": "https://github.com/msiric/synaps#readme",
"bugs": {
"url": "https://github.com/msiric/synaps/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"dead-code": "knip",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,json}": "biome check --write --no-errors-on-unmatched"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"mri": "^1.2.0",
"picomatch": "^4.0.0",
"typescript": "^5.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^22.0.0",
"@types/picomatch": "^3.0.0",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"knip": "^5.85.0",
"lint-staged": "^16.2.7",
"tsx": "^4.21.0",
"vitest": "^4.0.18"
}
}