-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.json
More file actions
69 lines (69 loc) · 1.71 KB
/
schema.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Plexus UI Configuration",
"description": "Configuration schema for Plexus UI component library",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"description": "JSON schema reference"
},
"style": {
"type": "string",
"enum": [
"default",
"minimal",
"space"
],
"default": "default",
"description": "Visual style variant for components"
},
"tsx": {
"type": "boolean",
"default": true,
"description": "Use TypeScript (.tsx) files"
},
"aliases": {
"type": "object",
"description": "Import path aliases",
"required": [
"components",
"utils"
],
"properties": {
"components": {
"type": "string",
"default": "@/components",
"description": "Path alias for components directory"
},
"utils": {
"type": "string",
"default": "@/lib/utils",
"description": "Path alias for utilities"
},
"plexusui": {
"type": "string",
"default": "@/components/plexusui",
"description": "Path alias for Plexus UI components"
}
}
},
"resolvedPaths": {
"type": "object",
"description": "Resolved filesystem paths (computed during init)",
"properties": {
"components": {
"type": "string",
"description": "Absolute path to components directory"
},
"plexusui": {
"type": "string",
"description": "Absolute path to plexusui components"
}
}
}
},
"required": [
"aliases"
]
}