-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.json
More file actions
104 lines (104 loc) · 2.55 KB
/
Copy pathtest.json
File metadata and controls
104 lines (104 loc) · 2.55 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "JSON Preview",
"version": "1.0.0",
"description": "A macOS Quick Look extension for interactive JSON previews",
"author": {
"name": "Maurice Jumelet",
"email": "hello@example.com",
"links": {
"github": "https://github.com/mauricejumelet",
"website": "https://example.com"
}
},
"features": [
"Syntax highlighting",
"Collapsible tree view",
"Search with navigation",
"Dark mode support",
"Copy prettified JSON"
],
"config": {
"maxFileSize": 10485760,
"supportedTypes": ["public.json"],
"theme": {
"light": {
"background": "#ffffff",
"text": "#1e1e1e",
"keys": "#0451a5",
"strings": "#0a7e1f",
"numbers": "#d18616"
},
"dark": {
"background": "#1e1e1e",
"text": "#d4d4d4",
"keys": "#9cdcfe",
"strings": "#ce9178",
"numbers": "#b5cea8"
}
},
"performance": {
"autoCollapseDepth": 3,
"nodeThreshold": 5000
}
},
"sampleData": {
"users": [
{
"id": 1,
"name": "Alice",
"active": true,
"score": 98.5,
"tags": ["admin", "developer"],
"metadata": null
},
{
"id": 2,
"name": "Bob",
"active": false,
"score": 72.3,
"tags": ["viewer"],
"metadata": {
"lastLogin": "2025-01-15T10:30:00Z",
"preferences": {
"theme": "dark",
"notifications": true,
"language": "en"
}
}
},
{
"id": 3,
"name": "Charlie",
"active": true,
"score": 85.0,
"tags": ["developer", "tester"],
"metadata": {
"lastLogin": "2025-02-20T14:15:00Z",
"preferences": {
"theme": "light",
"notifications": false,
"language": "nl"
}
}
}
],
"emptyObject": {},
"emptyArray": [],
"nestedArrays": [[1, 2], [3, [4, 5]], [6]],
"unicodeText": "Hello \u4e16\u754c \ud83c\udf0d",
"specialChars": "Line 1\nLine 2\tTabbed\nPath: C:\\Users\\test",
"longString": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.",
"numbers": {
"integer": 42,
"negative": -17,
"float": 3.14159,
"scientific": 1.23e10,
"zero": 0
},
"booleans": {
"trueValue": true,
"falseValue": false
},
"nullValue": null
}
}