swl-core 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,42 +1,66 @@
1
1
  {
2
2
  "name": "swls-language-support",
3
- "displayName": "SWLS Language Support",
3
+ "displayName": "Stellar Web Language Styling (SWLS) Tools",
4
4
  "description": "Suporte completo à linguagem SWLS: sintaxe, autocomplete, ícone e snippets.",
5
5
  "version": "1.2.0",
6
- "publisher": "swls-lang",
6
+ "publisher": "swl-maycon-developer",
7
7
  "icon": "icons/swls-icon.png",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/swls-lang/swls-core"
10
+ "url": "https://github.com/swl-maycon/swlLang"
11
11
  },
12
- "engines": { "vscode": "^1.75.0" },
13
- "categories": ["Programming Languages", "Snippets"],
14
- "activationEvents": ["onLanguage:swls"],
12
+ "engines": {
13
+ "vscode": "^1.75.0"
14
+ },
15
+ "categories": [
16
+ "Programming Languages",
17
+ "Snippets"
18
+ ],
19
+ "activationEvents": [
20
+ "onLanguage:swls"
21
+ ],
15
22
  "main": "./src/extension.js",
16
23
  "contributes": {
17
- "languages": [{
18
- "id": "swls",
19
- "aliases": ["SWLS", "swls", "Stellar Web Language Styling"],
20
- "extensions": [".swls"],
21
- "configuration": "./language-configuration.json",
22
- "icon": {
23
- "light": "./icons/swls-icon.png",
24
- "dark": "./icons/swls-icon.png"
24
+ "languages": [
25
+ {
26
+ "id": "swls",
27
+ "aliases": [
28
+ "SWLS",
29
+ "swls",
30
+ "Stellar Web Language Styling"
31
+ ],
32
+ "extensions": [
33
+ ".swls"
34
+ ],
35
+ "configuration": "./language-configuration.json",
36
+ "icon": {
37
+ "light": "./icons/swls-icon.png",
38
+ "dark": "./icons/swls-icon.png"
39
+ }
40
+ }
41
+ ],
42
+ "grammars": [
43
+ {
44
+ "language": "swls",
45
+ "scopeName": "source.swls",
46
+ "path": "./syntaxes/swls.tmLanguage.json"
47
+ }
48
+ ],
49
+ "snippets": [
50
+ {
51
+ "language": "swls",
52
+ "path": "./snippets/swls.json"
25
53
  }
26
- }],
27
- "grammars": [{
28
- "language": "swls",
29
- "scopeName": "source.swls",
30
- "path": "./syntaxes/swls.tmLanguage.json"
31
- }],
32
- "snippets": [{
33
- "language": "swls",
34
- "path": "./snippets/swls.json"
35
- }],
36
- "iconThemes": [{
37
- "id": "swls-icons",
38
- "label": "SWLS File Icons",
39
- "path": "./icons/icon-theme.json"
40
- }]
54
+ ],
55
+ "iconThemes": [
56
+ {
57
+ "id": "swls-icons",
58
+ "label": "SWLS File Icons",
59
+ "path": "./icons/icon-theme.json"
60
+ }
61
+ ]
62
+ },
63
+ "devDependencies": {
64
+ "@vscode/vsce": "^2.15.0"
41
65
  }
42
66
  }