-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.83 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
{
"name": "vscode-extension-pack-marksmall",
"displayName": "Mark Small's VSCode Extension Pack",
"description": "Collection of mandatory extensions I use for development",
"version": "1.0.0",
"scripts": {
"package": "vsce package"
},
"publisher": "marksmall",
"author": {
"name": "marksmall",
"url": "https://github.com/marksmall",
"email": "marksmall@gmx.com"
},
"engines": {
"vscode": "^1.64.1"
},
"categories": [
"Extension Packs",
"Snippets"
],
"galleryBanner": {
"color": "#00762a",
"theme": "dark"
},
"icon": "jason.png",
"homepage": "https://github.com/marksmall",
"bugs": {
"url": "https://github.com/marksmall/vscode-extension-pack-marksmall/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marksmall/vscode-extension-pack-marksmall"
},
"extensionPack": [
"4ops.terraform",
"aaron-bond.better-comments",
"bradlc.vscode-tailwindcss",
"bungcip.better-toml",
"dbaeumer.vscode-eslint",
"dsznajder.es7-react-js-snippets",
"eamodio.gitlens",
"esbenp.prettier-vscode",
"formulahendry.auto-complete-tag",
"mikestead.dotenv",
"ms-azuretools.vscode-docker",
"MS-vsliveshare.vsliveshare-pack",
"ms-python.python",
"naumovs.color-highlight",
"pdconsec.vscode-print",
"SimonSiefke.svg-preview",
"TabNine.tabnine-vscode",
"VisualStudioExptTeam.vscodeintellicode",
"xabikos.ReactSnippets",
"yzhang.markdown-all-in-one"
],
"contributes": {
"snippets": [
{
"language": "typescript",
"path": "./snippets/ts-snippets.json"
},
{
"language": "typescriptreact",
"path": "./snippets/tsx-snippets.json"
}
]
},
"devDependencies": {
"vsce": "^2.14.0"
},
"dependencies": {
"yarn": "^1.22.19"
}
}