oscript-vscode-plugin
Version:
Oscript support for writing Autonomous Agents in VS Code
28 lines (27 loc) • 977 B
JSON
{
"name": "vscode-languageserver-types",
"description": "Types used by the Language server for node",
"version": "3.14.0",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-languageserver-node.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
},
"main": "./lib/umd/main.js",
"typings": "./lib/umd/main",
"module": "./lib/esm/main.js",
"scripts": {
"prepublishOnly": "npm run clean && npm run compile-esm && npm run compile && npm run test",
"postpublish": "node ../build/npm/post-publish.js",
"compile": "node ../build/bin/tsc -p ./tsconfig.json",
"compile-esm": "node ../build/bin/tsc -p ./tsconfig.esm.json",
"clean": "node ../node_modules/rimraf/bin.js lib",
"watch": "node ../build/bin/tsc -w -p ./tsconfig.json",
"test": "node ../node_modules/mocha/bin/_mocha",
"preversion": "npm test"
}
}