| { | |
| "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.100.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/vscode": "^1.100.0", | |
| "esbuild": "^0.25.0", | |
| "eslint": "^9.13.0", | |
| "npm-run-all": "^4.1.5", | |
| "typescript": "^5.9.2", | |
| "typescript-eslint": "^8.39.0" | |
| } | |
| } |