UNPKG

ruchy-syntax-tools

Version:

Comprehensive syntax highlighting and language support for the Ruchy programming language

51 lines (50 loc) 1.95 kB
{ "name": "vscode-languageclient", "description": "VSCode Language client implementation", "version": "8.1.0", "author": "Microsoft Corporation", "license": "MIT", "engines": { "vscode": "^1.67.0" }, "repository": { "type": "git", "url": "https://github.com/Microsoft/vscode-languageserver-node.git", "directory": "client" }, "bugs": { "url": "https://github.com/Microsoft/vscode-languageserver-node/issues" }, "enabledApiProposals": [], "main": "./lib/node/main.js", "browser": { "./lib/node/main.js": "./lib/browser/main.js" }, "typings": "./lib/common/api.d.ts", "devDependencies": { "@types/minimatch": "^3.0.5", "@types/semver": "^7.3.10", "@types/vscode": "1.67.0", "shx": "^0.3.4" }, "dependencies": { "minimatch": "^5.1.0", "semver": "^7.3.7", "vscode-languageserver-protocol": "3.17.3" }, "scripts": { "prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail", "prepack": "npm run all:publish", "compile": "node ../build/bin/tsc -b ./tsconfig.json && shx cp src/node/terminateProcess.sh lib/node/terminateProcess.sh", "compile:clean": "git clean -xfd . && npm install && npm run clean && npm run compile", "watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w", "lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src", "test": "cd ../client-node-tests && npm test && cd ../client", "clean": "node ../node_modules/rimraf/bin.js lib", "all": "npm run clean && npm run compile && npm run lint && npm test", "compile:publish": "node ../build/bin/tsc -b ./tsconfig.publish.json && shx cp src/node/terminateProcess.sh lib/node/terminateProcess.sh", "all:publish": "git clean -xfd . && npm install && npm run updateVSCodeVersion && npm run compile:publish && npm run lint && cd ../client-node-tests && npm run all:publish && cd ..", "preversion": "npm test", "updateVSCodeVersion": "node ./bin/updateVSCode.js" } }