diff --git a/README.md b/README.md index 6803b72..3b766b4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # 🍲 Mabo -[![GitHub License](https://img.shields.io/github/license/dnaka91/mabo?style=for-the-badge)](LICENSE.md) -[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/dnaka91/mabo?style=for-the-badge&logo=git)](https://github.com/dnaka91/mabo/commits/main/) +[![Project License](https://img.shields.io/github/license/dnaka91/mabo?style=for-the-badge)](LICENSE.md) +[![Git commit activity](https://img.shields.io/github/commit-activity/m/dnaka91/mabo?style=for-the-badge&logo=git)](https://github.com/dnaka91/mabo/commits/main/) [![Discord](https://img.shields.io/discord/789699970138767360?style=for-the-badge&logo=discord)](https://discord.gg/phxGsW8dWd) [![GitHub Sponsors](https://img.shields.io/github/sponsors/dnaka91?style=for-the-badge&logo=githubsponsors)](https://github.com/sponsors/dnaka91) diff --git a/vscode-extension/package.json b/vscode-extension/package.json index fcf5f4d..9f7ec19 100644 --- a/vscode-extension/package.json +++ b/vscode-extension/package.json @@ -1,21 +1,57 @@ { "name": "mabo", "displayName": "Mabo", - "description": "", "version": "0.1.0", + "description": "Data format and schema, with a type system as strong as Rust's.", "license": "MIT", + "publisher": "dnaka91", + "preview": true, + "author": { + "name": "Dominik Nakamura", + "email": "dnaka91@gmail.com" + }, + "categories": [ + "Formatters", + "Linters", + "Programming Languages" + ], + "keywords": [ + "data-format", + "language", + "schema" + ], + "badges": [ + { + "url": "https://img.shields.io/github/license/dnaka91/mabo?style=for-the-badge", + "href": "LICENSE.md", + "description": "Project License" + }, + { + "url": "https://img.shields.io/github/commit-activity/m/dnaka91/mabo?style=for-the-badge&logo=git", + "href": "https://github.com/dnaka91/mabo/commits/main", + "description": "Git commit activity" + }, + { + "url": "https://img.shields.io/discord/789699970138767360?style=for-the-badge&logo=discord", + "href": "https://discord.gg/phxGsW8dWd", + "description": "Discord" + } + ], + "qna": false, + "homepage": "https://dnaka91.github.io/mabo", "repository": { + "type": "git", "url": "https://github.com/dnaka91/mabo.git" }, + "sponsor": { + "url": "https://github.com/sponsors/dnaka91" + }, "main": "./dist/extension.js", "icon": "./images/logo.png", - "engines": { - "node": ">=21", - "vscode": "^1.85.0" + "galleryBanner": { + "color": "#d95a00", + "theme": "dark" }, - "categories": [ - "Programming Languages" - ], "contributes": { "languages": [ { @@ -128,6 +164,10 @@ "vscode:prepublish": "bun run schemas && bun run syntaxes && bun run build", "package": "vsce package" }, + "engines": { + "node": ">=21", + "vscode": "^1.85.0" + }, "dependencies": { "vscode-languageclient": "^9.0.1" },