-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.63 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.63 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
{
"name": "angular-schule-extension-pack",
"displayName": "Angular.Schule: Extension Pack",
"description": "A list of extensions for our angular workshops",
"icon": "images/angular-shield.png",
"private": true,
"galleryBanner": {
"color": "#6661c0",
"theme": "dark"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/angular-schule/vscode-angular-schule-extension-pack.git"
},
"keywords": [
"Angular",
"Angular Schule",
"Angular.Schule",
"TypeScript",
"workshop"
],
"version": "0.5.0",
"publisher": "angular-schule",
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Extension Packs"
],
"extensionPack": [
"dbaeumer.vscode-eslint",
"Angular.ng-template",
"EditorConfig.EditorConfig",
"christian-kohler.path-intellisense"
],
"activationEvents": [
"onCommand:extension.getVersion",
"onCommand:extension.updateConfig",
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.updateConfig",
"title": "Update User Settings (configuration in settings.json)",
"category": "Angular.Schule"
},
{
"command": "extension.getVersion",
"title": "Get Version",
"category": "Angular.Schule"
}
],
"configuration": {
"type": "object",
"title": "Angular-Schule: Extension Pack",
"properties": {
"angular-schule.configUpdated": {
"type": "string",
"default": "0.0.0",
"description": "Saves the current version number. If it does not match, then the extension was updated and `extension.updateConfig` is going to be triggered. This will update the current version number again."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:publish": "vsce publish",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/vscode": "^1.57.0",
"@types/glob": "^7.1.3",
"@types/node": "14.x",
"eslint": "^7.27.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"glob": "^7.1.7",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2",
"vsce": "^1.93.0"
}
}