Files
vscode-extension-samples/package.json
2025-09-23 21:57:41 -07:00

23 lines
689 B
JSON

{
"name": "vsc-extension-samples",
"license": "MIT",
"publisher": "Microsoft",
"version": "0.0.1",
"private": true,
"scripts": {
"compile-all": "tsx .scripts/run-script.ts compile",
"lint-all": "tsx .scripts/run-script.ts lint",
"install-all": "tsx .scripts/run-command.ts npm install",
"audit-fix-all": "tsx .scripts/run-command.ts npm audit fix",
"format-all": "tsx .scripts/format",
"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"
}
}