Files
vscode-extension-samples/package.json
Matt Bierner 1a3ac0c722 Switch internal scripts to ts
Also adds a formatting script and runs it against all TS files in the samples
2024-10-28 16:41:49 -07:00

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.6.3"
}
}