kylin-code/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 Permalink Normal View History

2022-06-14 14:37:10 +08:00
{
"name": "builtin-notebook-renderers",
"displayName": "%displayName%",
"description": "%description%",
"publisher": "vscode",
"version": "1.0.0",
"license": "MIT",
2024-04-30 20:57:13 +08:00
"icon": "media/icon.png",
2022-06-14 14:37:10 +08:00
"engines": {
"vscode": "^1.57.0"
},
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"notebookRenderer": [
{
2024-04-30 20:57:13 +08:00
"id": "vscode.builtin-renderer",
2022-06-14 14:37:10 +08:00
"entrypoint": "./renderer-out/index.js",
"displayName": "Kylin-Code Builtin Notebook Output Renderer",
2022-06-14 14:37:10 +08:00
"requiresMessaging": "never",
"mimeTypes": [
"image/gif",
"image/png",
"image/jpeg",
"image/git",
"image/svg+xml",
"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": {
2024-04-30 20:57:13 +08:00
"compile": "npx gulp compile-extension:notebook-renderers && npm run build-notebook",
"watch": "npx gulp compile-watch:notebook-renderers",
2022-06-14 14:37:10 +08:00
"build-notebook": "node ./esbuild"
},
2024-04-30 20:57:13 +08:00
"dependencies": {},
2022-06-14 14:37:10 +08:00
"devDependencies": {
2024-04-30 20:57:13 +08:00
"@types/jsdom": "^21.1.0",
"@types/vscode-notebook-renderer": "^1.60.0",
"jsdom": "^21.1.1"
2022-06-14 14:37:10 +08:00
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}