-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.35 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
{
"name": "modgraph",
"version": "1.5.0",
"description": "A TypeScript CLI tool that generates module dependency graphs from JS/TS codebases",
"main": "dist/index.js",
"bin": {
"modgraph": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest",
"test:run": "vitest run",
"prerelease": "npm run build",
"release": "changeset version && changeset publish"
},
"keywords": [
"module",
"dependency",
"graph",
"typescript",
"javascript",
"cli",
"analysis"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/yourusername/modgraph.git"
},
"bugs": {
"url": "https://github.com/yourusername/modgraph/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/yourusername/modgraph#readme",
"dependencies": {
"@changesets/cli": "^2.29.4",
"@modelcontextprotocol/sdk": "^1.13.0",
"@vscode/ripgrep": "^1.15.13",
"commander": "^14.0.0",
"ms": "^2.1.3",
"tsconfig-resolver": "^3.0.1",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/ms": "^2.1.0",
"@types/node": "^24.0.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}