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

36 lines
818 B
JSON
Raw 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",
2024-05-28 14:53:06 -07:00
"watch": "tsc -watch -p ./"
2020-11-19 15:37:31 -08:00
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^20",
"@types/vscode": "^1.88.0",
"eslint": "^9.13.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.11.0"
2020-11-19 15:37:31 -08:00
}
2021-03-04 11:17:05 -08:00
}