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

35 lines
819 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.100.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",
2025-08-06 23:43:14 -07:00
"@types/node": "^22",
"@types/vscode": "^1.100.0",
"eslint": "^9.13.0",
2025-08-06 23:43:14 -07:00
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
2020-11-19 15:37:31 -08:00
}
2025-08-06 23:43:14 -07:00
}