-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
177 lines (177 loc) · 5.13 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "vscode-ng-webview",
"description": "Starter template for your next VSCode extension based on Angular",
"version": "0.0.0",
"publisher": "Bonfisoft",
"license": "MIT",
"engines": {
"vscode": "^1.52.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --output-hashing none && tsc -p tsconfig.extension.json",
"build-dev": "ng build --output-hashing none && tsc -p tsconfig.extension.json",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"package": "vsce package --yarn",
"redux-devtools": "redux-devtools --hostname=localhost --port=8765 --open",
"vscode:prepublish": "npm run build && tsc -p tsconfig.extension.json"
},
"private": false,
"main": "./dist/ext-src/extension.js",
"contributes": {
"commands": [
{
"command": "ng-webview.start",
"title": "Open",
"category": "NgWebView"
},
{
"command": "ng-webview.send-message",
"title": "Send Message",
"category": "NgWebView"
},
{
"command": "ng-webview.send-message-test",
"title": "Send Test Message",
"category": "NgWebView"
}
],
"configuration": {
"title": "ng-webview",
"properties": {
"ng-webview.theme": {
"type": "string",
"default": "system",
"description": "The selected theme for the UI.",
"enum": [
"system",
"darcula",
"broccoli"
],
"enumDescriptions": [
"The system theme",
"A version of Darcula",
"An healthy theme full of fiber"
]
},
"ng-webview.language": {
"type": "string",
"default": "en",
"description": "The selected language for the UI.",
"enum": [
"en",
"it",
"de"
],
"enumDescriptions": [
"English (US)",
"Italiano",
"Deutsch"
]
},
"ng-webview.nightTheme": {
"type": "string",
"default": "default",
"description": "The selected night theme for the UI.",
"enum": [
"system",
"darcula",
"broccoli"
],
"enumDescriptions": [
"The system theme",
"A version of Darcula",
"An healthy theme full of fiber"
]
},
"ng-webview.autoNightMode": {
"type": "boolean",
"default": false,
"description": "Automatically switch to the night theme."
},
"ng-webview.stickyHeader": {
"type": "boolean",
"default": false,
"description": "Make the app header sticky."
},
"ng-webview.pageAnimations": {
"type": "boolean",
"default": false,
"description": "The selected language for the UI."
},
"ng-webview.pageAnimationsDisabled": {
"type": "boolean",
"default": false,
"description": "The selected language for the UI."
},
"ng-webview.elementsAnimations": {
"type": "boolean",
"default": false,
"description": "The selected language for the UI."
},
"ng-webview.hour": {
"type": "string",
"default": "17",
"format": "time",
"description": "The time at which the autonight starts. Should be in RFC3339 time format (hh:mm:ssZ)"
}
}
}
},
"activationEvents": [
"onCommand:ng-webview.start"
],
"dependencies": {
"@angular/animations": "^13.2.4",
"@angular/cdk": "^13.2.4",
"@angular/common": "^13.2.4",
"@angular/compiler": "^13.2.4",
"@angular/core": "^13.2.4",
"@angular/forms": "^13.2.4",
"@angular/material": "^13.2.4",
"@angular/platform-browser": "^13.2.4",
"@angular/platform-browser-dynamic": "^13.2.4",
"@angular/router": "^13.2.4",
"@ngrx/effects": "^13.0.2",
"@ngrx/entity": "^13.0.2",
"@ngrx/router-store": "^13.0.2",
"@ngrx/store": "^13.0.2",
"@ngrx/store-devtools": "^13.0.2",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"@types/bootstrap": "^5.1.9",
"@types/vscode": "^1.64.0",
"bootstrap": "^5.1.3",
"ngrx-slice": "^6.2.0",
"rxjs": "^7.5.4",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.2.5",
"@angular/cli": "^13.2.5",
"@angular/compiler-cli": "^13.2.4",
"@redux-devtools/cli": "^1.0.6",
"@types/jasmine": "^3.10.3",
"@types/node": "^17.0.21",
"@vscode/test-electron": "^2.1.2",
"hint": "^6.1.9",
"jasmine-core": "^4.0.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"remotedev": "^0.2.9",
"typescript": "^4.5.5",
"vsce": "^2.6.7"
},
"repository": {
"type": "git",
"url": "https://github.com/AlbertoBonfiglio/vscode-ng-webview.git"
}
}