vscode/extensions/notebook-renderers/package.json

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

60 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "builtin-notebook-renderers",
"displayName": "%displayName%",
"description": "%description%",
"publisher": "vscode",
"version": "1.0.0",
"license": "MIT",
"icon": "media/icon.png",
"engines": {
"vscode": "^1.57.0"
},
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"notebookRenderer": [
{
"id": "vscode.builtin-renderer",
"entrypoint": "./renderer-out/index.js",
"displayName": "VS Code Builtin Notebook Output Renderer",
"requiresMessaging": "never",
"mimeTypes": [
"image/gif",
"image/png",
2022-02-07 21:58:30 +00:00
"image/jpeg",
"image/git",
2022-02-07 21:58:30 +00:00
"image/svg+xml",
2022-02-07 22:06:35 +00:00
"text/html",
"application/javascript",
"application/vnd.code.notebook.error",
"application/vnd.code.notebook.stdout",
"application/x.notebook.stdout",
"application/x.notebook.stream",
"application/vnd.code.notebook.stderr",
"application/x.notebook.stderr",
"text/plain"
]
}
]
},
"scripts": {
2023-03-16 19:07:47 +00:00
"compile": "npx gulp compile-extension:notebook-renderers && npm run build-notebook",
"watch": "npx gulp compile-watch:notebook-renderers",
"build-notebook": "node ./esbuild"
},
2023-03-16 19:07:47 +00:00
"dependencies": {},
"devDependencies": {
2023-03-16 19:07:47 +00:00
"@types/jsdom": "^21.1.0",
"@types/vscode-notebook-renderer": "^1.60.0",
"jsdom": "^21.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}