Files
vscode-extension-samples/test-provider-sample/package.json

35 lines
822 B
JSON
Raw Permalink Normal View History

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",
"private": true,
"license": "MIT",
2020-11-19 15:37:31 -08:00
"repository": "https://github.com/Microsoft/vscode-extension-samples",
"engines": {
"vscode": "^1.88.0"
2020-11-19 15:37:31 -08:00
},
"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",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
2024-05-28 14:53:06 -07:00
"watch": "tsc -watch -p ./"
2020-11-19 15:37:31 -08:00
},
"devDependencies": {
"@types/node": "^18",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.26.0",
"typescript": "^5.4.2"
2020-11-19 15:37:31 -08:00
}
2021-03-04 11:17:05 -08:00
}