forked from npmgraph/npmgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (77 loc) · 2.08 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-0FPWJCJM5R"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-0FPWJCJM5R');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
http-equiv="Content-Security-Policy"
content="
; default-src
'self'
'unsafe-inline'
'unsafe-eval'
blob:
fonts.googleapis.com
fonts.gstatic.com
notify.bugsnag.com
sessions.bugsnag.com
www.google-analytics.com
www.googletagmanager.com
vercel.live
; img-src
'self'
www.gravatar.com
avatars.githubusercontent.com
github.com
www.googletagmanager.com
www.google-analytics.com
; connect-src
*
"
/>
<link
rel="search"
type="application/opensearchdescription+xml"
title="npmgraph"
href="/opensearch.xml"
/>
<meta
name="google-site-verification"
content="3ngFL3Bcx_jMvyD6oTFDYNk8fmF-wxk5ykjZg7wW624"
/>
<meta name="description" content="Graph / visualize of npm dependencies" />
<meta
name="keywords"
content="visualize, visualization, graph, npm, npm modules, npm graph, npm licenses"
/>
<meta
property="og:image"
content="https://github.com/user-attachments/assets/7b1414d8-a6fd-4d00-8b49-ed490b077b01"
/>
<meta name="twitter:card" content="summary_large_image" />
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link
href="https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700"
rel="stylesheet"
/>
<link href="./index.scss" rel="stylesheet" />
<title>npmgraph - NPM Dependency Diagrams</title>
</head>
<body>
<div id="app" />
</body>
<script type="module" src="./lib/index.tsx"></script>
</html>