patto 0.1.7

🐙 Yet another plain text format for quick note taking and task management
Documentation
{
  "name": "patto-language-server",
  "description": "patto language server",
  "license": "MIT",
  "version": "0.1.7",
  "categories": [],
  "keywords": [
    "language-server",
    "tower-lsp"
  ],
  "repository": {
    "url": "https://github.com/ompugao/patto"
  },
  "engines": {
    "vscode": "^1.66.0"
  },
  "enabledApiProposals": [],
  "activationEvents": [
    "onLanguage:patto"
  ],
  "main": "./dist/extension.js",
  "contributes": {
    "languages": [
      {
        "id": "patto",
        "extensions": [
          ".pn"
        ]
      }
    ],
    "commands": [
      {
        "command": "patto.tasks",
        "title": "Patto: Aggreate tasks in the workspace in vscode"
      }
    ],
    "views": {
      "explorer": [
        {
          "id": "pattoTasks",
          "name": "Patto Note Tasks"
        }
      ]
    },
    "configuration": {
      "type": "object",
      "title": "patto-language-server",
      "properties": {
        "patto-language-server.trace.server": {
          "type": "string",
          "scope": "window",
          "enum": [
            "off",
            "messages",
            "verbose"
          ],
          "enumDescriptions": [
            "No traces",
            "Error only",
            "Full log"
          ],
          "default": "off",
          "description": "Traces the communication between VS Code and the language server."
        }
      }
    }
  },
  "scripts": {
    "postinstall": "cd client && pnpm i",
    "test-compile": "tsc -p ./",
    "compile": "cross-env NODE_ENV=production tsc -b",
    "watch": "rm -rf dist && tsc -b -w",
    "lint": "eslint ./client --ext ts",
    "pretest": "npm run compile && npm run lint",
    "test": "node ./dist/test/runTest.js",
    "build": "webpack --config webpack.config.js",
    "package": "vsce package --no-dependencies",
    "publish": "vsce publish --no-dependencies"
  },
  "devDependencies": {
    "@types/glob": "^7.2.0",
    "@types/mocha": "^8.2.3",
    "@types/node": "^12.20.55",
    "@typescript-eslint/eslint-plugin": "^3.10.1",
    "@typescript-eslint/parser": "^3.10.1",
    "cross-env": "^7.0.3",
    "electron-rebuild": "^1.11.0",
    "eslint": "^7.32.0",
    "glob": "^7.2.3",
    "mocha": "^8.4.0",
    "typescript": "5.4.5",
    "vscode-test": "^1.6.1",
    "vscode-uri": "^3.0.8",
    "webpack": "^5.97.1",
    "webpack-cli": "^5.1.4"
  },
  "dependencies": {
    "@vscode/vsce": "^3.2.1",
    "vscode-languageclient": "9.0.1"
  }
}