2024-06-03 17:18:25 +02:00
|
|
|
{
|
|
|
|
|
"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": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.0"
|
2024-06-03 17:18:25 +02:00
|
|
|
},
|
|
|
|
|
"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",
|
2024-10-26 17:44:03 -07:00
|
|
|
"lint": "eslint"
|
2024-06-03 17:18:25 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-10-26 17:44:03 -07:00
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2025-08-07 07:57:14 -07:00
|
|
|
"@types/vscode": "^1.100.0",
|
2025-03-03 09:59:28 -08:00
|
|
|
"esbuild": "^0.25.0",
|
2024-10-26 17:44:03 -07:00
|
|
|
"eslint": "^9.13.0",
|
2024-06-03 17:18:25 +02:00
|
|
|
"npm-run-all": "^4.1.5",
|
2025-08-06 23:43:14 -07:00
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
2024-06-03 17:18:25 +02:00
|
|
|
}
|
2025-08-06 23:43:14 -07:00
|
|
|
}
|