Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « notebook-renderers « extensions - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15b6751e209db68e9db72a4057341222c49122af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
	"name": "builtin-notebook-renderers",
	"displayName": "%displayName%",
	"description": "%description%",
	"publisher": "vscode",
	"version": "1.0.0",
	"license": "MIT",
	"engines": {
		"vscode": "^1.57.0"
	},
	"capabilities": {
		"virtualWorkspaces": true,
		"untrustedWorkspaces": {
			"supported": true
		}
	},
	"contributes": {
		"notebookRenderer": [
			{
				"id": "vscode-builtin-notebook-renderer",
				"entrypoint": "./renderer-out/index.js",
				"displayName": "VS Code Builtin Notebook Output Renderer",
				"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": {
		"compile": "npm run build-notebook",
		"watch": "node ./esbuild --watch",
		"build-notebook": "node ./esbuild"
	},
	"dependencies": {
	},
	"devDependencies": {
		"@types/vscode-notebook-renderer": "^1.60.0"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/microsoft/vscode.git"
	}
}