2020-11-19 15:37:31 -08:00
|
|
|
{
|
|
|
|
|
"name": "test-provider-sample",
|
|
|
|
|
"displayName": "test-provider-sample",
|
2021-05-24 10:12:32 -07:00
|
|
|
"description": "Sample showing how to use the test APIs",
|
2020-11-19 15:37:31 -08:00
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "vscode-samples",
|
2022-02-09 11:48:55 -08:00
|
|
|
"private": true,
|
|
|
|
|
"license": "MIT",
|
2020-11-19 15:37:31 -08:00
|
|
|
"repository": "https://github.com/Microsoft/vscode-extension-samples",
|
2021-11-26 18:14:06 +00:00
|
|
|
"enabledApiProposals": [
|
2022-01-06 13:01:53 -08:00
|
|
|
"testCoverage",
|
|
|
|
|
"testRefresh"
|
2021-11-26 18:14:06 +00:00
|
|
|
],
|
2020-11-19 15:37:31 -08:00
|
|
|
"engines": {
|
|
|
|
|
"vscode": "^1.51.0"
|
|
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
2021-05-24 10:12:32 -07:00
|
|
|
"workspaceContains:*.md"
|
2020-11-19 15:37:31 -08:00
|
|
|
],
|
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
|
"prettier": {
|
|
|
|
|
"printWidth": 120,
|
|
|
|
|
"singleQuote": true,
|
|
|
|
|
"arrowParens": "avoid"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
|
"watch": "tsc -watch -p ./",
|
|
|
|
|
"download-api": "vscode-dts dev",
|
2021-02-22 09:58:22 -08:00
|
|
|
"postdownload-api": "vscode-dts main",
|
2020-11-19 15:37:31 -08:00
|
|
|
"postinstall": "npm run download-api"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^12.12.0",
|
2022-04-13 15:49:42 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.19.0",
|
|
|
|
|
"eslint": "^8.13.0",
|
2022-04-13 15:12:23 -07:00
|
|
|
"typescript": "^4.6.3",
|
2022-01-06 13:01:53 -08:00
|
|
|
"vscode-dts": "^0.3.3"
|
2020-11-19 15:37:31 -08:00
|
|
|
}
|
2021-03-04 11:17:05 -08:00
|
|
|
}
|