-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "vscode-schematics-snippets",
"displayName": "Schematics Snippets",
"description": "Code snippets collection for writing @angular-devkit/schematics",
"publisher": "mikehuang",
"version": "5.0.2",
"scripts": {
"build": "tsc -p tsconfig.json",
"vsce:publish": "vsce publish",
"vsce:publish:patch": "vsce publish patch",
"vsce:publish:minor": "vsce publish minor",
"vsce:publish:major": "vsce publish major",
"vsce:package": "vsce package",
"gen:document": "ts-node document-generator.ts"
},
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Snippets",
"Other"
],
"icon": "icon.png",
"activationEvents": [
"onLanguage:typescript",
"onLanguage:json",
"onCommand:schematicToolkit.genSchematic"
],
"main": "src/extension.js",
"contributes": {
"commands": [
{
"command": "schematicToolkit.genSchematic",
"title": "Schematics: Generate A Schematic"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/wellwind/vscode-schematics-snippets.git"
},
"license": "MIT",
"keywords": [
"schematics",
"typescript",
"code snippets"
],
"devDependencies": {
"@types/node": "^12.7.7",
"@types/prettier": "^1.18.2",
"@types/shelljs": "^0.8.5",
"@types/vscode": "^1.39.0",
"markdown-table": "^1.1.3",
"shelljs": "^0.8.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"vsce": "^1.66.0"
}
}