UNPKG

1.08 kBJSONView Raw
1{
2 "name": "vscode-languageserver-types",
3 "description": "Types used by the Language server for node",
4 "version": "3.17.0",
5 "author": "Microsoft Corporation",
6 "license": "MIT",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/Microsoft/vscode-languageserver-node.git",
10 "directory": "types"
11 },
12 "bugs": {
13 "url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
14 },
15 "main": "./lib/umd/main.js",
16 "typings": "./lib/umd/main",
17 "module": "./lib/esm/main.js",
18 "scripts": {
19 "prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile:esm && npm run compile && npm run test",
20 "postpublish": "node ../build/npm/post-publish.js",
21 "compile": "node ../build/bin/tsc -b ./tsconfig.json",
22 "compile:esm": "node ../build/bin/tsc -b ./tsconfig.esm.json",
23 "clean": "node ../node_modules/rimraf/bin.js lib",
24 "watch": "node ../build/bin/tsc -b ./tsconfig-watch.json -w",
25 "lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
26 "test": "node ../node_modules/mocha/bin/_mocha",
27 "preversion": "npm test"
28 }
29}