-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.25 KB
/
package.json
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": "easy-dep-graph",
"version": "1.0.0",
"description": "Easily see the dependency graph of your npm project",
"homepage": "https://github.com/danisss9/easy-dep-graph#readme",
"repository": {
"type": "git",
"url": "https://github.com/danisss9/easy-dep-graph.git"
},
"bugs": {
"url": "https://github.com/danisss9/easy-dep-graph/issues"
},
"bin": {
"easy-dep-graph": "bin/index.js"
},
"type": "module",
"license": "MIT",
"keywords": [
"node",
"nodejs",
"npm",
"npx",
"list",
"la",
"la",
"easy",
"dep",
"circular",
"dependencies",
"dependency",
"dependent",
"graph",
"visual",
"browser",
"angular",
"ng",
"react",
"vue",
"svelte",
"javascript",
"typescript",
"js",
"ts"
],
"scripts": {
"release": "npm run compile:lib && npm run publish:lib",
"compile:lib": "tsc --project ./src/tsconfig.json",
"publish:lib": "npm publish --access public"
},
"dependencies": {
"fastify": "^4.25.2",
"mustache": "^4.2.0",
"open": "^10.0.3",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/mustache": "^4.2.5",
"@types/node": "^20.11.5",
"@types/shelljs": "^0.8.15",
"typescript": "^5.3.3"
}
}