-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "vscode-vue-typescript-sfc-snippets",
"displayName": "Vue.js with TypeScript Snippets for VSCode",
"description": "Collection of snippets for Vue.js with TypeScript using SFC or class based API (vscode)",
"version": "0.2.0",
"publisher": "LissetteIbnz",
"author": {
"name": "Sara Lissette"
},
"engines": {
"vscode": "^1.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LissetteIbnz/vscode-vue-typescript-sfc-snippets.git"
},
"bugs": {
"url": "https://github.com/LissetteIbnz/vscode-vue-typescript-sfc-snippets.git/issues",
"email": "lissette.ibnz@gmail.com"
},
"icon": "images/VueTS_icon_large.png",
"galleryBanner": {
"color": "#CACF85",
"theme": "dark"
},
"keywords": [
"Vue.js",
"Composition API",
"Vue",
"Vue 2",
"Vue Snippets",
"TypeScript",
"SFC"
],
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "vue",
"path": "./snippets/vue-base.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
},
{
"language": "typescript",
"path": "./snippets/vue-scripts.json"
},
{
"language": "typescript",
"path": "./snippets/vue-class-style-scripts.json"
},
{
"language": "vue-html",
"path": "./snippets/vue-html.json"
},
{
"language": "html",
"path": "./snippets/vue-html.json"
}
]
},
"homepage": "https://github.com/LissetteIbnz/vscode-vue-typescript-sfc-snippets/blob/master/README.md",
"license": "MIT"
}