{
	"name": "@vscode/sync-api-client",
	"version": "0.7.2",
	"description": "A client that calls VS Code API from a non extension host worker in sync fashion.",
	"engines": {
		"node": ">=16.15.1"
	},
	"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.3",
		"@vscode/sync-api-common": "0.7.2"
	},
	"devDependencies": {
	},
	"scripts": {
		"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",
		"prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile",
		"postpublish": "node ../build/npm/post-publish.js"
	}
}
