{
	"name": "@vscode/sync-api-common",
	"version": "0.7.2",
	"description": "An RPC implementation between Web and NodeJS workers that works sync",
	"engines": {
		"node": ">=16.15.1"
	},
	"main": "./lib/node/main.js",
	"browser": {
		"./lib/node/main.js": "./lib/browser/main.js"
	},
	"typings": "./lib/common/api.d.ts",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/microsoft/vscode-wasm.git"
	},
	"keywords": [
		"VSCode",
		"rpc",
		"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-common/README.md",
	"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 && npm test",
		"postpublish": "node ../build/npm/post-publish.js",
		"esbuild": "node ./bin/esbuild.js",
		"test": "npm run test:node && npm run test:browser",
		"test:node": "node ../node_modules/mocha/bin/_mocha",
		"test:browser": "npm run esbuild && node ../build/bin/runBrowserTests.js  http://127.0.0.1:8080/sync-api-common/src/browser/test/",
		"test:runServer": "npm run esbuild && node ../build/bin/runServer.js"
	}
}