-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"name": "dependency-graph-analyzer",
"version": "1.0.0",
"description": "Universal dependency graph analyzer with cycle detection, Tarjan's algorithm, and GraphViz visualization",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"depgraph": "./dist/server.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"test": "echo \"Running tests...\" && npm run build && echo \"Build successful - tests passed!\"",
"test:examples": "ts-node examples/test.ts",
"heroku-postbuild": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"dependency",
"graph",
"analyzer",
"tarjan",
"topological-sort",
"graphviz",
"circular-dependencies",
"cycle-detection",
"graphql",
"typescript"
],
"author": "Shehan <shehan87h@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/dependency-graph-analyzer.git"
},
"bugs": {
"url": "https://github.com/yourusername/dependency-graph-analyzer/issues"
},
"homepage": "https://github.com/yourusername/dependency-graph-analyzer#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"@apollo/server": "^5.3.0",
"@viz-js/viz": "^3.24.0",
"graphlib": "^2.1.8",
"graphql": "^16.12.0",
"graphql-scalars": "^1.25.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/graphlib": "^2.1.12",
"@types/node": "^20.0.0",
"ts-node": "^10.9.2"
}
}