-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.29 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.29 KB
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": "angular-component-extension",
"displayName": "Angular Component Extension",
"description": "An Extension for Angular @Component",
"version": "0.0.14",
"publisher": "onixie",
"homepage": "https://github.com/onixie/angular-component-extension",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/onixie/angular-component-extension.git"
},
"keywords": [
"Angular",
"Component",
"TypeScript"
],
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Other"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:html",
"onLanguage:razor"
],
"main": "./out/src/extension",
"contributes": {
"keybindings": [
{
"command": "ng-c-ext.action.formatDocument",
"key": "shift+alt+f",
"when": "editorLangId == typescript"
},
{
"command": "ng-c-ext.action.formatSelection",
"key": "ctrl+k ctrl+f",
"when": "editorLangId == typescript"
}
],
"grammars": [
{
"injectTo": [
"source.ts"
],
"embeddedLanguages": {
"meta.inline.template": "xml",
"meta.inline.style": "css"
},
"scopeName": "source.ts.ng.inline",
"path": "./syntaxes/ng.inline.tmLanguage.json"
}
],
"configuration": {
"title": "Angular @Component Extension Configuration",
"type": "object",
"properties": {
"ng-c-ext.disableInlineTemplateFormat": {
"description": "Disable format for in-line template",
"type": "boolean",
"default": false
},
"ng-c-ext.disableInlineStylesFormat": {
"description": "Disable format for in-line styles",
"type": "boolean",
"default": false
},
"ng-c-ext.disableInlineIndent": {
"description": "Disable indentation along in-line formatting",
"type": "boolean",
"default": false
},
"ng-c-ext.disableGotoDefinition": {
"description": "Disable Go to Definition",
"type": "boolean",
"default": false
},
"ng-c-ext.shutupMode": {
"description": "Disable info message for new components detection in current workspace",
"type": "boolean",
"default": false
},
"ng-c-ext.ngcignore": {
"description": "Exclude files and directories to look for according to glob patterns",
"type": "array",
"default": [
"**/node_modules/**"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"test": "node ./node_modules/vscode/bin/test",
"devDependencies": {
"@types/js-beautify": "0.0.28",
"@types/mocha": "^2.2.32",
"@types/node": "^10.12.0",
"mocha": "^2.3.3",
"typescript": "^2.9.2",
"vscode": "^1.0.0"
},
"dependencies": {
"@types/glob": "^5.0.30",
"glob": "^7.1.1",
"js-beautify": "^1.6.12",
"typescript": "^2.9.2",
"vscode-languageclient": "^3.2.0",
"vscode-languageserver": "^3.2.0",
"vscode-uri": "^1.0.0"
}
}