-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.61 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
{
"name": "meteor-settings-intellisense",
"displayName": "Meteor Settings IntelliSense",
"publisher": "etraid",
"description": "Provides hints and autocompletion for Meteor settings",
"version": "0.1.7",
"engines": {
"vscode": "^1.60.0"
},
"repository": {
"type": "git",
"url": "https://github.com/8ByteSword/meteor-settings-intellisense"
},
"icon": "logo.png",
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"workspaceContains:settings.json",
"workspaceContains:.meteor/release"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "meteor-settings-intellisense.helloWorld",
"title": "Hello World"
},
{
"command": "meteor-settings-intellisense.testSettingsParsing",
"title": "Test Settings Parsing"
}
],
"configuration": {
"type": "object",
"properties": {
"meteorSettingsIntelliSense.settingsFilePath": {
"type": "string",
"default": "settings.json",
"description": "The path to the Meteor settings file relative to the workspace root."
}
}
}
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-promise": "^4.2.1",
"vscode": "^1.1.34"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"keywords": [
"Meteor",
"Settings",
"IntelliSense",
"JavaScript",
"TypeScript",
"VSCode",
"Extension",
"Autocomplete",
"Linting",
"Tooltips",
"React"
]
}