{
	"name": "vscode-languageclient",
	"description": "VSCode Language client implementation",
	"version": "10.0.0-next.20",
	"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": "^5.1.2",
		"@types/semver": "^7.7.0",
		"@types/vscode": "1.106.0",
		"shx": "^0.4.0"
	},
	"dependencies": {
		"minimatch": "^10.1.2",
		"semver": "^7.7.1",
		"vscode-languageserver-protocol": "3.17.6-next.16"
	},
	"scripts": {
		"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
		"prepack": "npm run all:publish",
		"compile": "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": "tsc -b ./tsconfig.watch.json -w",
		"lint": "eslint --ext ts 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 && 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",
		"update:vscode-version": "node ./bin/updateVSCode.js"
	}
}
