Files
vscode-extension-samples/package.json

22 lines
649 B
JSON
Raw Permalink Normal View History

2015-11-05 17:33:07 +01:00
{
"name": "vsc-extension-samples",
2024-01-22 13:01:59 -08:00
"license": "MIT",
"publisher": "Microsoft",
2018-10-16 17:08:42 -07:00
"version": "0.0.1",
"private": true,
2018-10-16 17:08:42 -07:00
"scripts": {
2025-07-24 16:02:26 -07:00
"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",
"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"
2018-10-16 17:08:42 -07:00
}
2025-07-24 16:02:26 -07:00
}