Skip to content

Commit

Permalink
feat(vscode): extend metadata for the vscode extension
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaka91 committed Feb 6, 2024
1 parent df535d7 commit 1dd3ca8
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
54 changes: 47 additions & 7 deletions vscode-extension/package.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand Down Expand Up @@ -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"
},
Expand Down

0 comments on commit 1dd3ca8

Please sign in to comment.