-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.17 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ui-lineage",
"version": "0.6.1",
"description": "React & TypeScript static analysis that maps every UI component to the APIs, state, and events behind it — and serves that context to AI coding agents over MCP. Screenshot or ticket in; component, data lineage, user journeys, and blast radius out. Deterministic, no LLM in the core.",
"license": "MIT",
"homepage": "https://github.com/officialCodeWork/CodeRadar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/officialCodeWork/CodeRadar.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/officialCodeWork/CodeRadar/issues"
},
"type": "module",
"bin": {
"ui-lineage": "dist/index.js",
"ui-lineage-mcp": "dist/mcp.js"
},
"main": "dist/lib.js",
"module": "dist/lib.js",
"types": "dist/lib.d.ts",
"exports": {
".": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
},
"./vision": {
"types": "./dist/vision.d.ts",
"default": "./dist/vision.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"react",
"typescript",
"static-analysis",
"code-analysis",
"data-lineage",
"data-flow",
"dependency-graph",
"component-graph",
"impact-analysis",
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agents",
"codebase-context",
"llm",
"claude",
"user-journeys",
"ast",
"ts-morph",
"cli"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"commander": "^13.0.0",
"ts-morph": "^24.0.0",
"yaml": "^2.9.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@coderadar/agent-sdk": "workspace:*",
"@coderadar/core": "workspace:*",
"@coderadar/mcp": "workspace:*",
"@coderadar/parser-react": "workspace:*",
"@coderadar/vision": "workspace:*",
"@types/node": "^22.20.1",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitest": "^3.2.7"
}
}