mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 13:19:42 +00:00
* Better notebook markup renderer api For #121256 - Use js modules for notebook output renderers - Rename apis from `markdown` to `markup` - Use imports and exports for apis instead of globals for apis - Use esbuild instead of webpack so we can emit js modules - Clearly split top level markup renderes from renderers that extend other renderers * Use constant instead of comment for replacement
17 lines
339 B
JSON
17 lines
339 B
JSON
{
|
|
"name": "vscode-extensions",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"description": "Dependencies shared by all extensions",
|
|
"dependencies": {
|
|
"typescript": "4.2.4"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node ./postinstall"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.11.12",
|
|
"vscode-grammar-updater": "^1.0.3"
|
|
}
|
|
}
|