auto-lsp 0.6.2

A rust crate for creating AST and LSP servers powered by tree-sitter.
Documentation
{
    "name": "vscode-wasi",
    "description": ".",
    "author": "Adrien Clauzel",
    "license": "MIT",
    "version": "1.0.0",
    "publisher": "adclz",
    "categories": [],
    "keywords": [],
    "engines": {
        "vscode": "^1.88.0"
    },
    "main": "./client/out/extension",
    "browser": "./client/dist/web/extension",
    "activationEvents": [
        "*"
    ],
    "extensionDependencies": [
        "ms-vscode.wasm-wasi-core"
    ],
    "contributes": {
        "languages": [
            {
                "id": "python",
                "aliases": [
                    "Python",
                    "Py"
                ],
                "extensions": [
                    ".py"
                ]
            }
        ]
    },
    "dependencies": {},
    "devDependencies": {
        "@typescript-eslint/eslint-plugin": "^7.14.0",
        "@typescript-eslint/parser": "^7.14.0",
        "@types/node": "^20",
        "eslint": "^8.57.0",
        "typescript": "^5.6.2",
        "esbuild": "^0.21.3",
        "serve": "^14.2.3"
    },
    "scripts": {
        "postinstall": "cd client && npm install && cd ..",
        "vscode:prepublish": "npm run build",
        "build": "cd client && npm run compile && cd ../server && npm run build && cd ..",
        "lint": "cd client && npm run lint && cd ..",
        "esbuild": "node ./bin/esbuild.js"
    }
}