glacier-cli 0.2.0

CLI do glacier-ui: cria um projeto pronto (templates .gv, .gss e scripts Luau) e instala as extensões de VS Code.
{
  "name": "glacier-view",
  "displayName": "Glacier View",
  "description": "Language support for Glacier View (.gv) markup — syntax highlighting plus clickable links and go-to-definition from <script src>, action attributes, <link>/<style> sheets, imports and component tags to the files (and functions) they name.",
  "version": "0.4.0",
  "publisher": "antoniofernandodj",
  "license": "MIT",
  "author": {
    "name": "Antonio Fernando"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/antoniofernandodj/glacier-ui.git"
  },
  "engines": {
    "vscode": "^1.75.0"
  },
  "main": "./extension.js",
  "categories": [
    "Programming Languages"
  ],
  "keywords": [
    "glacier",
    "glacier-ui",
    "gv",
    "glacier view"
  ],
  "icon": "icons/marketplace.png",
  "activationEvents": [
    "onLanguage:glacier-view"
  ],
  "contributes": {
    "languages": [
      {
        "id": "glacier-view",
        "aliases": [
          "Glacier View",
          "GlacierView",
          "gv"
        ],
        "extensions": [
          ".gv"
        ],
        "configuration": "./language-configuration.json",
        "icon": {
          "light": "./icons/gv-file.svg",
          "dark": "./icons/gv-file.svg"
        }
      }
    ],
    "grammars": [
      {
        "language": "glacier-view",
        "scopeName": "text.glacier-view",
        "path": "./syntaxes/glacier-view.tmLanguage.json",
        "embeddedLanguages": {
          "meta.embedded.block.lua": "lua",
          "meta.embedded.block.gss": "gss"
        }
      }
    ]
  }
}