|
1 | 1 | {
|
2 | 2 | "name": "mysql",
|
3 | 3 | "displayName": "MySQL syntax highlighting & code snippets",
|
4 |
| - "description": "This VSCode extension provides MySQL syntax highlighting, token colors for dark themes and code snippets.", |
5 |
| - "version": "0.0.8", |
| 4 | + "description": "This VSCode extension provides MySQL syntax highlighting for dark themes and code snippets.", |
| 5 | + "version": "0.0.9", |
6 | 6 | "publisher": "zendobk",
|
7 |
| - "icon": "images/mysql.png", |
| 7 | + "icon": "images/mysql-logo.png", |
| 8 | + "galleryBanner": { |
| 9 | + "color": "#F2F2F2", |
| 10 | + "theme": "light" |
| 11 | + }, |
| 12 | + "keywords": [ |
| 13 | + "mysql", |
| 14 | + "syntax", |
| 15 | + "highlighting", |
| 16 | + "snippets" |
| 17 | + ], |
| 18 | + "categories": [ |
| 19 | + "Programming Languages", |
| 20 | + "Snippets" |
| 21 | + ], |
| 22 | + "compatibility": { |
| 23 | + "1.0.0": "1.0.0" |
| 24 | + }, |
8 | 25 | "author": {
|
9 | 26 | "name": "Dao Nguyen",
|
10 | 27 |
|
11 | 28 | },
|
12 | 29 | "repository": {
|
13 | 30 | "type": "git",
|
14 |
| - "url": "[email protected]:zendobk/vscode-mysql.git" |
| 31 | + "url": "https://github.com/zendobk/vscode-mysql" |
| 32 | + }, |
| 33 | + "bugs": { |
| 34 | + "url": "https://github.com/zendobk/vscode-mysql/issues" |
15 | 35 | },
|
16 | 36 | "license": "MIT",
|
17 | 37 | "engines": {
|
18 |
| - "vscode": "^1.95.0" |
| 38 | + "vscode": "^1.95.0", |
| 39 | + "node": "^20.18.0" |
19 | 40 | },
|
20 |
| - "categories": [ |
21 |
| - "Programming Languages" |
22 |
| - ], |
23 | 41 | "scripts": {
|
24 | 42 | "build": "npx vsce package"
|
25 | 43 | },
|
|
35 | 53 | ".sql"
|
36 | 54 | ],
|
37 | 55 | "icon": {
|
38 |
| - "light": "./images/mysql.svg", |
39 |
| - "dark": "./images/mysql.svg" |
| 56 | + "light": "./images/mysql-icon.svg", |
| 57 | + "dark": "./images/mysql-icon.svg" |
40 | 58 | },
|
41 | 59 | "configuration": "./languages/mysql.language-configuration.json"
|
42 | 60 | }
|
|
45 | 63 | {
|
46 | 64 | "language": "mysql",
|
47 | 65 | "scopeName": "source.sql",
|
48 |
| - "path": "./syntaxes/mysql.tmLanguage.json" |
| 66 | + "path": "./syntaxes/mysql.tmGrammar.json" |
49 | 67 | }
|
50 | 68 | ],
|
51 | 69 | "snippets": [
|
|
55 | 73 | }
|
56 | 74 | ],
|
57 | 75 | "configurationDefaults": {
|
58 |
| - "editor.fontSize": 12, |
59 |
| - "editor.bracketPairColorization.enabled": false, |
| 76 | + "[mysql]": { |
| 77 | + "editor.fontSize": 12, |
| 78 | + "editor.bracketPairColorization.enabled": false |
| 79 | + }, |
| 80 | + "files.associations": { |
| 81 | + "*.sql": "mysql", |
| 82 | + "*.sql.*": "mysql" |
| 83 | + }, |
60 | 84 | "editor.tokenColorCustomizations": {
|
61 | 85 | "textMateRules": [
|
62 | 86 | {
|
|
0 commit comments