@vscode/sync-api-client
Version:
A client that calls VS Code API from a non extension host worker in sync fashion.
41 lines (40 loc) • 1.31 kB
JSON
{
"name": "@vscode/sync-api-client",
"version": "0.8.1",
"description": "A client that calls VS Code API from a non extension host worker in sync fashion.",
"engines": {
"node": ">=16.14.2"
},
"main": "./lib/main.js",
"typings": "./lib/main.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-wasm.git"
},
"keywords": [
"VSCode",
"API",
"sync"
],
"author": "Visual Studio Code Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-wasm/issues"
},
"homepage": "https://github.com/microsoft/vscode-wasm/blob/main/sync-api-client/README.md",
"dependencies": {
"vscode-uri": "^3.0.6",
"@vscode/sync-api-common": "0.8.1"
},
"devDependencies": {
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
"prepack": "git clean -xfd . && npm install && npm run all",
"compile": "node ../node_modules/typescript/lib/tsc.js -b ./tsconfig.json",
"watch": "node ../node_modules/typescript/lib/tsc.js -b ./tsconfig.watch.json -w",
"clean": "node ../node_modules/rimraf/bin.js lib && node ../node_modules/rimraf/bin.js dist",
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
"all": "npm run clean && npm run compile && npm run lint"
}
}