dioxus-cli 0.3.0

CLI tool for developing, testing, and publishing Dioxus apps
Documentation
{
    "name": "dioxusstudio",
    "displayName": "dioxusStudio",
    "description": "Toolkit for IDE support in Dioxus apps",
    "version": "0.0.1",
    "publisher": "jkelleyrtp",
    "private": true,
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "https://github.com/Microsoft/vscode-extension-samples"
    },
    "engines": {
        "vscode": "^1.32.0"
    },
    "categories": [
        "Other"
    ],
    "activationEvents": [
        "onCommand:extension.htmlToDioxusRsx",
        "onCommand:extension.htmlToDioxusComponent"
    ],
    "main": "./out/extension",
    "contributes": {
        "commands": [
            {
                "command": "extension.htmlToDioxusRsx",
                "title": "Dioxus: Convert HTML to RSX"
            },
            {
                "command": "extension.htmlToDioxusComponent",
                "title": "Dioxus: Convert HTML to Component"
            }
        ]
    },
    "scripts": {
        "vscode:prepublish": "npm run compile",
        "compile": "tsc -p ./",
        "lint": "eslint . --ext .ts,.tsx",
        "watch": "tsc -watch -p ./",
        "package": "vsce package"
    },
    "devDependencies": {
        "@types/node": "^12.12.0",
        "@types/vscode": "^1.32.0",
        "@typescript-eslint/eslint-plugin": "^4.16.0",
        "@typescript-eslint/parser": "^4.16.0",
        "eslint": "^7.21.0",
        "typescript": "^4.3.5"
    }
}