-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.44 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
{
"name": "fema-essentials",
"displayName": "FEMA Essentials Bundle",
"description": "Pacote de extensões para o vscode desenvolvido para os alunos da FEMA.",
"version": "1.0.0",
"icon": "assets/fema-essentials-logo.png",
"galleryBanner": {
"color": "#003F6D",
"theme": "dark"
},
"publisher": "fema-devspace",
"pricing": "Free",
"categories": [
"Extension Packs"
],
"keywords": [
"fema",
"ciência da computação",
"computação",
"bcc",
"analise e desenvolvimento de sistemas",
"ads"
],
"author": {
"name": "Thiago Ausechi",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/thiagoausechi/"
},
"repository": {
"type": "git",
"url": "https://github.com/femadevspace/fema-essentials"
},
"bugs": {
"url": "https://github.com/femadevspace/fema-essentials/issues"
},
"contributes": {
"configurationDefaults": {
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.suggest.autoImports": true,
"workbench.iconTheme": "material-icon-theme",
"files.autoSave": "off",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"colorize.languages": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"json"
],
"colorize.colorized_colors": [
"HEXA",
"ARGB",
"RGB",
"HSL"
],
"code-runner.clearPreviousOutput": true,
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
}
}
},
"engines": {
"vscode": "^1.92.0"
},
"extensionPack": [
"fema-devspace.femascript-lang",
"formulahendry.auto-rename-tag",
"kamikillerto.vscode-colorize",
"adpyke.codesnap",
"ritwickdey.LiveServer",
"PKief.material-icon-theme",
"esbenp.prettier-vscode",
"MS-CEINTL.vscode-language-pack-pt-BR",
"aaron-bond.better-comments",
"ms-vscode.cpptools",
"formulahendry.code-runner",
"WallabyJs.console-ninja",
"Cardinal90.multi-cursor-case-preserve",
"christian-kohler.path-intellisense",
"steoates.autoimport"
]
}