forked from microsoft/vscode-extension-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 689 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"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"
}
}