{
	"name": "test-adapter-converter",
	"displayName": "Test Adapter Converter",
	"description": "Converter extension from the Test Adapter UI to native VS Code testing",
	"publisher": "ms-vscode",
	"version": "0.2.1",
	"engines": {
		"vscode": "^1.93.0"
	},
	"capabilities": {
		"untrustedWorkspaces": {
			"supported": true
		}
	},
	"categories": [
		"Other"
	],
	"activationEvents": [
		"onCommand:test-explorer.run",
		"onCommand:test-explorer.run-all"
	],
	"main": "./out/extension.js",
	"contributes": {
		"commands": [
			{
				"command": "testExplorerConverter.useNativeTesting",
				"title": "Use Native Testing"
			},
			{
				"command": "testExplorerConverter.activate",
				"title": "Activate Test Adapter Converter"
			}
		],
		"menus": {
			"commandPalette": [
				{
					"command": "testExplorerConverter.activate",
					"when": "false"
				},
				{
					"command": "testExplorerConverter.useNativeTesting",
					"when": "false"
				}
			]
		}
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/microsoft/vscode-test-adapter-converter.git"
	},
	"author": "Connor Peet <connor@peet.io>",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/microsoft/vscode-test-adapter-converter/issues"
	},
	"homepage": "https://github.com/microsoft/vscode-test-adapter-converter#readme",
	"scripts": {
		"vscode:prepublish": "npm run -S esbuild-base -- --minify",
		"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node --target=node20",
		"build": "npm run -S esbuild-base -- --sourcemap",
		"watch": "npm run -S esbuild-base -- --sourcemap --watch",
		"fmt": "prettier --write \"src/**/*.ts\"&& npm run test -- --fix",
		"test": "eslint src --ext ts && tsc --noEmit"
	},
	"devDependencies": {
		"@types/vscode": "^1.93.0",
		"@typescript-eslint/eslint-plugin": "^5.47.1",
		"@typescript-eslint/parser": "^5.47.1",
		"esbuild": "^0.23.1",
		"eslint": "^8.30.0",
		"eslint-plugin-header": "^3.1.1",
		"prettier": "^2.8.1",
		"rimraf": "^3.0.2",
		"typescript": "^5.6.2",
		"vscode-test-adapter-api": "^1.9.0"
	},
	"prettier": {
		"printWidth": 100,
		"singleQuote": true,
		"tabWidth": 2,
		"arrowParens": "avoid"
	},
	"dependencies": {
		"ansi-colors": "^4.1.3",
		"stacktrace-parser": "^0.1.10"
	},
	"__metadata": {
		"installedTimestamp": 1749365210919,
		"targetPlatform": "undefined",
		"size": 76580
	}
}