-
Notifications
You must be signed in to change notification settings - Fork 16
/
extension.json
77 lines (71 loc) · 1.99 KB
/
extension.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"identifier": "jasonplatts.tailwindcss",
"name": "Tailwind CSS",
"organization": "Jason Platts",
"description": "Provides completions and a documentation sidebar for Tailwind CSS.",
"version": "4.6",
"license":"MIT",
"repository":"https://github.com/jasonplatts/tailwindcss-nova-ext",
"bugs":"https://github.com/jasonplatts/tailwindcss-nova-ext/issues",
"min_runtime": "10.0",
"categories": ["completions", "languages", "sidebars"],
"main": "main.js",
"activationEvents": [
"*"
],
"entitlements": {
"filesystem": "readonly",
"process": true
},
"sidebars": [
{
"id": "tw-sidebar",
"name": "Tailwind CSS",
"smallImage": "tailwind-small",
"largeImage": "tailwind-large",
"sections": [
{
"id": "tw-sidebar-classes",
"name": "Tailwind CSS (v3.x)",
"headerCommands": [
{
"title": "View Docs…",
"tooltip": "Open Tailwind CSS Documentation in Browser",
"image": "__builtin.remote",
"command": "tailwind.openDocs"
}
],
"contextCommands": [
{
"title": "Insert",
"command": "tailwind.doubleClick"
}
]
}
]
}
],
"config-workspace": [
{
"key": "tailwindcss.config.section",
"title": "Tailwind CSS Version",
"type": "section",
"children": [
{
"key": "tailwindcss.workspace.tailwindConfig",
"title": "Tailwind Config File",
"description": "The extension automatically searches for a tailwind.config.js file within the current workspace. If you have changed the name of the configuration file from its default, or otherwise wish to specify its location, you may do so here.",
"type": "path"
}
]
}
],
"commands": {
"command-palette": [
{
"title": "Toggle TailwindCSS",
"command": "tailwind.toggle"
}
]
}
}