Files
vscode-extension-samples/esbuild-sample/package.json
Matt Bierner 73e249b3c1 Migrate all samples to eslint 9
Switches all samples to use eslint 9 with flat configs. I've tried to migrate existing settings as much as possible. However our eslint configs were also inconsistent so I've tried to align these too
2024-10-26 17:44:03 -07:00

52 lines
1.3 KiB
JSON

{
"name": "esbuild-sample",
"displayName": "esbuild-sample",
"description": "",
"version": "0.0.1",
"publisher": "vscode-samples",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "esbuild-sample.hello-esbuild",
"title": "Hello esbuild"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"check-types": "tsc --noEmit",
"lint": "eslint"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20",
"@types/vscode": "^1.73.0",
"esbuild": "^0.20.2",
"eslint": "^9.13.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.6.2",
"typescript-eslint": "^8.11.0"
}
}