mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
23 lines
634 B
JSON
23 lines
634 B
JSON
{
|
|
"name": "vsc-extension-samples",
|
|
"license": "MIT",
|
|
"publisher": "Microsoft",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"compile": "tsx .scripts/run-script.ts compile",
|
|
"lint": "tsx .scripts/run-script.ts lint",
|
|
"install": "tsx .scripts/run-command.ts npm install",
|
|
"auditFix": "tsx .scripts/run-command.ts npm audit fix",
|
|
"update-readme": "tsx .scripts/update-readme.ts",
|
|
"update-lsif": "tsx .scripts/update-lsif.ts",
|
|
"validate": "tsx .scripts/validate.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.8.2",
|
|
"glob": "^11.0.0",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.8.2"
|
|
}
|
|
}
|