-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.18 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
{
"name": "vscode-nestjs-typeorm-snippets",
"displayName": "NestJS TypeORM Snippets for VSCode Editor",
"description": "Snippets for TypeORM and NestJS for faster development. This extension for Visual Studio Code adds snippets for TypeORM for NestJS development.",
"version": "1.3.0",
"icon": "icon.png",
"license": "MIT",
"publisher": "imgildev",
"author": {
"name": "Manuel Gil",
"url": "https://github.com/ManuelGil"
},
"sponsor": {
"url": "https://github.com/sponsors/manuelgil"
},
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Snippets"
],
"keywords": [
"autocomplete-functionality",
"autocomplete",
"boilerplate",
"express",
"extension",
"grammars-utility",
"grammars",
"javascript",
"js",
"nest",
"nestjs-snippet",
"nestjs-snippets",
"nestjs",
"nestjs",
"node",
"nodejs",
"orm-snippet",
"orm-snippets",
"orm",
"snippet",
"snippets-collection",
"snippets-collections",
"snippets-library",
"snippets-plugin",
"snippets",
"ts",
"type-orm-snippet",
"type-orm-snippets",
"type-orm",
"typeorm-snippet",
"typeorm-snippets",
"typeorm",
"typescript",
"vscode-extension",
"vscode"
],
"homepage": "https://github.com/ManuelGil/vscode-nestjs-typeorm-snippets",
"repository": {
"type": "git",
"url": "https://github.com/ManuelGil/vscode-nestjs-typeorm-snippets"
},
"bugs": {
"url": "https://github.com/ManuelGil/vscode-nestjs-typeorm-snippets/issues"
},
"extensionPack": [
"imgildev.vscode-nestjs-snippets-extension"
],
"contributes": {
"snippets": [
{
"path": "./snippets/decorator/columns.code-snippets"
},
{
"path": "./snippets/decorator/entity-view.code-snippets"
},
{
"path": "./snippets/decorator/entity.code-snippets"
},
{
"path": "./snippets/decorator/listeners.code-snippets"
},
{
"path": "./snippets/decorator/relations.code-snippets"
},
{
"path": "./snippets/decorator/tree.code-snippets"
},
{
"path": "./snippets/custom.code-snippets"
}
]
}
}