vscode-languageclient
Version:
VSCode Language client implementation
66 lines (65 loc) • 2.06 kB
JSON
{
"name": "vscode-languageclient",
"description": "VSCode Language client implementation",
"version": "10.1.0",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
"vscode": "^1.91.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": ["codeActionAI"],
"exports": {
".": {
"types": "./lib/common/api.d.ts",
"default": "./lib/common/api.js"
},
"./node": {
"types": "./lib/node/main.d.ts",
"node": "./lib/node/main.js"
},
"./browser": {
"types": "./lib/browser/main.d.ts",
"browser": "./lib/browser/main.js"
},
"./$test/common/*": {
"types": "./lib/common/*.d.ts",
"node": "./lib/common/*.js"
}
},
"devDependencies": {
"@types/minimatch": "^6.0.0",
"@types/semver": "^7.7.1",
"@types/vscode": "1.106.0",
"shx": "^0.4.0"
},
"dependencies": {
"minimatch": "^10.2.5",
"semver": "^7.8.1",
"vscode-languageserver-textdocument": "1.0.13",
"vscode-languageserver-protocol": "3.18.2"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
"prepack": "npm run all:publish",
"compile": "tsc -b ./tsconfig.json",
"compile:clean": "git clean -xfd . && npm install && npm run clean && npm run compile",
"watch": "tsc -b ./tsconfig.watch.json -w",
"lint": "eslint src",
"test": "cd ../client-node-tests && npm test && cd ../client",
"clean": "rimraf lib",
"all": "npm run clean && npm run compile && npm run lint && npm test",
"compile:publish": "tsc -b ./tsconfig.publish.json",
"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",
"update:vscode-version": "node ./bin/updateVSCode.js"
}
}