Skip to content

Commit 23e8bea

Browse files
committed
Initial commit
0 parents commit 23e8bea

23 files changed

+5897
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
.env
3+
.claude
4+
.DS_Store
5+
src/schemas/*
6+
!src/schemas/opencollection.schema.json

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.11.0

index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>JSON Schema Viewer</title>
7+
</head>
8+
<body>
9+
<div id="root"></div>
10+
<script>
11+
// Monaco requires a global define function
12+
window.define = undefined;
13+
</script>
14+
<script type="module" src="/src/main.jsx"></script>
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)