package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "builtin-notebook-renderers",
  3. "displayName": "%displayName%",
  4. "description": "%description%",
  5. "publisher": "vscode",
  6. "version": "1.0.0",
  7. "license": "MIT",
  8. "icon": "media/icon.png",
  9. "engines": {
  10. "vscode": "^1.57.0"
  11. },
  12. "capabilities": {
  13. "virtualWorkspaces": true,
  14. "untrustedWorkspaces": {
  15. "supported": true
  16. }
  17. },
  18. "contributes": {
  19. "notebookRenderer": [
  20. {
  21. "id": "vscode.builtin-renderer",
  22. "entrypoint": "./renderer-out/index.js",
  23. "displayName": "VS Code Builtin Notebook Output Renderer",
  24. "requiresMessaging": "never",
  25. "mimeTypes": [
  26. "image/gif",
  27. "image/png",
  28. "image/jpeg",
  29. "image/git",
  30. "image/svg+xml",
  31. "text/html",
  32. "application/javascript",
  33. "application/vnd.code.notebook.error",
  34. "application/vnd.code.notebook.stdout",
  35. "application/x.notebook.stdout",
  36. "application/x.notebook.stream",
  37. "application/vnd.code.notebook.stderr",
  38. "application/x.notebook.stderr",
  39. "text/plain"
  40. ]
  41. }
  42. ]
  43. },
  44. "scripts": {
  45. "compile": "npx gulp compile-extension:notebook-renderers && npm run build-notebook",
  46. "watch": "npx gulp compile-watch:notebook-renderers",
  47. "build-notebook": "node ./esbuild"
  48. },
  49. "dependencies": {},
  50. "devDependencies": {
  51. "@types/jsdom": "^21.1.0",
  52. "@types/vscode-notebook-renderer": "^1.60.0",
  53. "jsdom": "^21.1.1"
  54. },
  55. "repository": {
  56. "type": "git",
  57. "url": "https://github.com/microsoft/vscode.git"
  58. }
  59. }