Files
vscode-extension-samples/proposed-api-sample/package.json
Matt Bierner 5b10219434 Bump eslint TS versions
This fixes the warnings about using an unsupported version of typescript
2022-06-28 15:25:09 -07:00

47 lines
1.1 KiB
JSON

{
"enabledApiProposals": [],
"name": "proposed-api-sample",
"displayName": "proposed-api-sample",
"description": "Sample showing how to use Proposed API",
"version": "0.0.1",
"publisher": "vscode-samples",
"private": true,
"license": "MIT",
"repository": "https://github.com/Microsoft/vscode-extension-samples",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.helloWorld"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
}
]
},
"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": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.13.0",
"typescript": "^4.7.2",
"vscode-dts": "^0.3.2"
}
}