← Back to Repository

package.json

Hash: 2bf2e6654d614d4c1d399e62b02a30084ea017f0

File Content
Raw / Download
{
  "name": "xarminasnoderunner",
  "displayName": "Simple Node.js Runner",
  "description": "Run Node.js scripts directly from VS Code editor like Python Runner",
<<<<<<< HEAD
  "version": "0.0.5",
=======
<<<<<<< HEAD
  "version": "0.0.5",
=======
  "version": "0.0.3",
>>>>>>> e49830b8c9b232a376cfaad5f5dc82137fa84061
>>>>>>> 5efaca5effb718582dc2468513252827fe8da1a5
  "publisher": "Xarmina",
  "author": {
    "name": "Xarmina Private",
    "email": "admin@xarmina.eu",
    "url": "https://xarmina.eu/"
  },
  "icon": "icon.png",
  "repository": {
    "type": "git",
<<<<<<< HEAD
    "url": "https://xarmina.eu/git/SimpelNodeRunnner#code"
=======
<<<<<<< HEAD
    "url": "https://xarmina.eu/git/SimpelNodeRunnner#code"
=======
    "url": "https://rl-dev.de/git/view/NodeRunner"
>>>>>>> e49830b8c9b232a376cfaad5f5dc82137fa84061
>>>>>>> 5efaca5effb718582dc2468513252827fe8da1a5
  },
  "engines": {
    "vscode": "^1.70.0"
  },
  "categories": [
    "Other"
  ],
  "keywords": [
    "node",
    "nodejs",
    "runner",
    "npm",
    "javascript"
  ],
  "galleryBanner": {
    "color": "#1E1E1E",
    "theme": "dark"
  },
  "homepage": "https://xarmina.eu/",
  "bugs": {
<<<<<<< HEAD
    "url": "https://xarmina.eu/git/SimpelNodeRunnner#issues"
=======
<<<<<<< HEAD
    "url": "https://xarmina.eu/git/SimpelNodeRunnner#issues"
=======
    "url": "https://rl-dev.de/git/NodeRunner/issues"
>>>>>>> e49830b8c9b232a376cfaad5f5dc82137fa84061
>>>>>>> 5efaca5effb718582dc2468513252827fe8da1a5
  },
  "license": "MIT",
  "activationEvents": [
    "onLanguage:javascript"
  ],
  "main": "./out/extension.js",
  "contributes": {
    "viewsContainers": {
      "activitybar": [
        {
          "id": "node-runner-explorer",
          "title": "Node Runner",
          "icon": "icon.svg"
        }
      ]
    },
    "views": {
      "node-runner-explorer": [
        {
          "id": "nodeRunner.npmCommands",
          "name": "NPM Commands",
          "icon": "$(list-flat)"
        }
      ]
    },
    "commands": [
      {
        "command": "nodeRunner.start",
        "title": "Run Node.js File",
        "icon": "$(play)"
      },
      {
        "command": "nodeRunner.stop",
        "title": "Stop Node.js File",
        "icon": "$(debug-stop)"
      },
      {
        "command": "nodeRunner.runNpmCommand",
        "title": "Run NPM Command"
      },
      {
        "command": "nodeRunner.refreshNpmCommands",
        "title": "Refresh NPM Commands",
        "icon": "$(refresh)"
      },
      {
        "command": "nodeRunner.checkNodeUpdates",
        "title": "Check for Node.js Updates",
        "category": "Node Runner",
        "icon": "$(cloud-download)"
      }
    ],
    "menus": {
      "view/title": [
        {
          "command": "nodeRunner.checkNodeUpdates",
          "when": "view == nodeRunner.npmCommands",
          "group": "navigation"
        },
        {
          "command": "nodeRunner.refreshNpmCommands",
          "when": "view == nodeRunner.npmCommands",
          "group": "navigation"
        }
      ],
      "editor/title": [
        {
          "command": "nodeRunner.start",
          "when": "resourceLangId == javascript && !nodeRunner.isRunning",
          "group": "navigation"
        },
        {
          "command": "nodeRunner.stop",
          "when": "nodeRunner.isRunning",
          "group": "navigation"
        }
      ]
    }
  },
  "scripts": {
    "vscode:prepublish": "npm run compile",
    "compile": "tsc -p ./",
    "watch": "tsc -watch -p ./"
  },
  "devDependencies": {
    "@types/node": "^16.x",
    "@types/vscode": "^1.70.0",
    "typescript": "^4.7.4"
  },
  "dependencies": {
    "@types/semver": "^7.7.1",
    "semver": "^7.7.3"
  }
}