-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.26 KB
/
package.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
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
105
106
107
108
109
110
111
112
{
"name": "css-intellisense",
"displayName": "CSS Intellisense",
"description": "A simple css auto complete helper extension for VS Code",
"version": "1.0.1",
"publisher": "id-sakurata",
"engines": {
"vscode": "^1.50.0"
},
"repository": "https://github.com/id-sakurata/css-intellisense-vscode",
"categories": ["Autocomplete", "CSS"],
"activationEvents": [
"onLanguage:html",
"onLanguage:css",
"onLanguage:php",
"onLanguage:vue",
"onLanguage:javascriptreact",
"onLanguage:blade"
],
"icon": "images/icon.png",
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "cssIntellisense.addFolder",
"title": "CSS Intellisense - Add CSS Folder"
},
{
"command": "cssIntellisense.addFile",
"title": "CSS Intellisense - Add CSS File"
},
{
"command": "cssIntellisense.refreshCache",
"title": "CSS Intellisense - Refresh Cache"
},
{
"command": "cssIntellisense.clearCache",
"title": "CSS Intellisense - Clear Cache"
}
],
"menus": {
"explorer/context": [
{
"command": "cssIntellisense.addFolder",
"when": "explorerResourceIsFolder",
"group": "navigation"
},
{
"command": "cssIntellisense.addFile",
"when": "resourceLangId == 'css'",
"group": "navigation"
}
]
},
"languages": [
{
"id": "html",
"extensions": [
".html",
".htm"
]
},
{
"id": "php",
"extensions": [
".php"
]
},
{
"id": "vue",
"extensions": [
".vue"
]
},
{
"id": "css",
"extensions": [
".css"
]
},
{
"id": "javascriptreact",
"extensions": [".jsx", ".tsx"]
},
{
"id": "blade",
"extensions": ["blade.php"]
}
],
"configuration": {
"type": "object",
"title": "CSS Intellisense Settings",
"properties": {
"cssIntellisense.css_folders": {
"type": "array",
"default": [],
"description": "List of CSS folders to be monitored."
},
"cssIntellisense.css_files": {
"type": "array",
"default": [],
"description": "List of CSS files to be monitored."
},
"cssIntellisense.auto_search": {
"type": "boolean",
"default": false,
"description": "Enable automatic search for CSS classes in the workspace."
}
}
}
}
}