Files
vscode-extension-samples/test-provider-sample/package.json
2021-03-04 11:17:05 -08:00

59 lines
1.3 KiB
JSON

{
"enableProposedApi": true,
"name": "test-provider-sample",
"displayName": "test-provider-sample",
"description": "Sample showing how to use Proposed API",
"version": "0.0.1",
"publisher": "vscode-samples",
"repository": "https://github.com/Microsoft/vscode-extension-samples",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "test-provider-sample.runTests",
"title": "Custom Run Tests",
"icon": "$(debug-start)"
}
],
"views": {
"explorer": [
{
"id": "sampleTestExplorerView",
"name": "Sample Test Explorer"
}
]
}
},
"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",
"postdownload-api": "vscode-dts main",
"postinstall": "npm run download-api"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.2.2",
"vscode-dts": "^0.3.1"
}
}