-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
123 lines (123 loc) · 2.8 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
113
114
115
116
117
118
119
120
121
122
123
{
"name": "atom-ide-vue",
"main": "./lib/main",
"version": "1.4.6",
"description": "Vue language support for Atom IDE",
"repository": "https://github.com/atom-ide-community/atom-ide-vue",
"keywords": [
"atom-package",
"atom-ide",
"ide-vue"
],
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint ."
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-languageclient": "^1.8.3",
"vls": "^0.7.2"
},
"devDependencies": {
"prettier": "^2.2.1"
},
"activationHooks": [
"text.html.vue:root-scope-used"
],
"enhancedScopes": [
"text.html.vue"
],
"consumedServices": {
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
},
"signature-help": {
"versions": {
"0.1.0": "consumeSignatureHelp"
}
},
"console": {
"versions": {
"0.1.0": "consumeConsole"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
},
"configSchema": {
"validation": {
"title": "Validation",
"description": "Linting and error checking. *Requires reload to take effect.*",
"type": "object",
"order": 1,
"properties": {
"script": {
"title": "Script",
"description": "Validate script tag's content (JS, TS)",
"type": "boolean",
"default": true,
"order": 1
},
"template": {
"title": "Template",
"description": "Validate template tag's content (HTML)",
"type": "boolean",
"default": true,
"order": 2
},
"style": {
"title": "Style",
"description": "Validate style tag's content (CSS, SCSS, Less)",
"type": "boolean",
"default": true,
"order": 3
}
}
},
"experimental": {
"title": "Experimental",
"description": "*Disabled by default. Requires reload to take effect.*",
"type": "object",
"properties": {
"templateInterpolationService": {
"title": "Template interpolation service",
"description": "Support for diagnostics, references, jump to definition etc. in template",
"type": "boolean",
"default": false
}
}
}
}
}