-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 937 Bytes
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
{
"name": "@coderadar/parser-react",
"version": "0.6.1",
"private": true,
"description": "React/TSX parser for CodeRadar — extracts components, hooks, data sources, state, and events into a lineage graph. Bundled into the published `ui-lineage` package.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run"
},
"dependencies": {
"@coderadar/core": "workspace:*",
"ts-morph": "^24.0.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@coderadar/agent-sdk": "workspace:*",
"@coderadar/vision": "workspace:*",
"@types/node": "^22.20.1",
"typescript": "^5.7.0",
"vitest": "^3.2.7"
}
}