void/extensions/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
426 B
JSON
Raw Permalink Normal View History

2024-09-11 02:37:36 +00:00
{
"name": "vscode-extensions",
"version": "0.0.1",
"license": "MIT",
"description": "Dependencies shared by all extensions",
"dependencies": {
2025-03-01 02:01:53 +00:00
"typescript": "^5.8.2"
2024-09-11 02:37:36 +00:00
},
"scripts": {
"postinstall": "node ./postinstall.mjs"
},
"devDependencies": {
2025-03-01 02:01:53 +00:00
"@parcel/watcher": "2.5.1",
"esbuild": "0.25.0",
2024-09-11 02:37:36 +00:00
"vscode-grammar-updater": "^1.1.0"
},
2025-03-01 02:01:53 +00:00
"overrides": {
2024-09-11 02:37:36 +00:00
"node-gyp-build": "4.8.1"
}
}