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

package.json « ipynb « extensions - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8feabc17af4f538fbfb178f444730cd6603bbf8 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
	"name": "ipynb",
	"displayName": "%displayName%",
	"description": "%description%",
	"publisher": "vscode",
	"version": "1.0.0",
	"license": "MIT",
	"engines": {
		"vscode": "^1.57.0"
	},
	"enabledApiProposals": [
		"notebookEditor",
		"notebookEditorEdit"
	],
	"activationEvents": [
		"*"
	],
	"extensionKind": [
		"workspace",
		"ui"
	],
	"main": "./out/ipynbMain.js",
	"browser": "./dist/browser/ipynbMain.js",
	"capabilities": {
		"virtualWorkspaces": true,
		"untrustedWorkspaces": {
			"supported": true
		}
	},
	"contributes": {
		"commands": [
			{
				"command": "ipynb.newUntitledIpynb",
				"title": "New Jupyter Notebook",
				"shortTitle": "Jupyter Notebook",
				"category": "Create"
			},
			{
				"command": "ipynb.openIpynbInNotebookEditor",
				"title": "Open ipynb file in notebook editor"
			}
		],
		"notebooks": [
			{
				"type": "jupyter-notebook",
				"displayName": "Jupyter Notebook",
				"selector": [
					{
						"filenamePattern": "*.ipynb"
					}
				],
				"priority": "default"
			}
		],
		"menus": {
			"file/newFile": [
				{
					"command": "ipynb.newUntitledIpynb",
					"group": "notebook"
				}
			],
			"commandPalette": [
				{
					"command": "ipynb.newUntitledIpynb"
				},
				{
					"command": "ipynb.openIpynbInNotebookEditor",
					"when": "false"
				}
			]
		}
	},
	"scripts": {
		"compile": "npx gulp compile-extension:ipynb",
		"watch": "npx gulp watch-extension:ipynb"
	},
	"dependencies": {
		"@enonic/fnv-plus": "^1.3.0",
		"detect-indent": "^6.0.0",
		"uuid": "^8.3.2"
	},
	"devDependencies": {
		"@jupyterlab/nbformat": "^3.2.9",
		"@types/uuid": "^8.3.1"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/microsoft/vscode.git"
	}
}