forked from lifeart/vscode-ember
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.39 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
{
"name": "vscode-ember-experimental",
"displayName": "Experimental Ember Language Server",
"description": "Provides features like auto complete, goto definition and diagnostics for Ember.js projects",
"author": "Suchita Doshi <[email protected]>",
"license": "MIT",
"version": "1.2.0",
"publisher": "suchitadoshi1987",
"icon": "icon.png",
"keywords": [
"Ember.js",
"Ember-CLI",
"Glimmer",
"Handlebars",
"Experimental Language server"
],
"engines": {
"vscode": "^1.22.2"
},
"preview": true,
"categories": [
"Programming Languages",
"Linters"
],
"repository": {
"type": "git",
"url": "https://github.com/suchitadoshi1987/vscode-ember"
},
"bugs": {
"url": "https://github.com/suchitadoshi1987/vscode-ember/issues"
},
"activationEvents": [
"workspaceContains:**/ember-cli-build.js",
"onCommand:els.runInEmberCLI"
],
"contributes": {
"views": {
"explorer": [
{
"id": "els.fileUsages",
"name": "Ember File Usages"
}
]
},
"commands": [
{
"command": "els.runInEmberCLI",
"title": "Ember: Execute ember-cli command"
}
],
"configuration": {
"title": "Experimental Ember Language Server",
"properties": {
"els.codeLens.relatedFiles": {
"type": "boolean",
"default": true,
"description": "Show related files as Lens on first line."
},
"els.local.disableInitialization": {
"type": "boolean",
"default": true,
"description": "Disable eager initialization of project"
},
"els.local.addons": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of UELS addons paths to include."
},
"els.local.ignoredProjects": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of project names to ignore."
},
"els.local.includeModules": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of node modules to be included in autcomplete on lazy init mode."
}
}
}
},
"main": "./out/src/extension",
"scripts": {
"_vscode:prepublish": "npm run compile",
"vs:package": "vsce package --yarn",
"vs:publish": "vsce publish --yarn",
"vs:publish:ci": "vsce publish --yarn --pat $VSCODE_STORE_TOKEN",
"ov:publish:ci": "ovsx publish --yarn --pat $OPEN_VSX_STORE_TOKEN",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install && yarn compile",
"clean:cache": "yarn cache clean @suchitadoshi1987/ember-language-server",
"build:langserver": "yarn --cwd ./node_modules/@suchitadoshi1987/ember-language-server prepublish"
},
"devDependencies": {
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.52",
"typescript": "^4.1.3",
"vsce": "1.83.0",
"ovsx": "^0.1.0-next.97d460c",
"vscode": "^1.1.37"
},
"dependencies": {
"@suchitadoshi1987/ember-language-server": "1.3.0",
"vscode-languageclient": "7.0.0"
},
"volta": {
"node": "14.15.4",
"yarn": "1.22.10"
}
}