Skip to content

Commit e8b63b2

Browse files
committed
undo package format changes
1 parent 2ad06b1 commit e8b63b2

File tree

1 file changed

+121
-121
lines changed

1 file changed

+121
-121
lines changed

extensions/ipynb/package.json

Lines changed: 121 additions & 121 deletions
Original file line numberDiff line numberDiff line change
@@ -1,124 +1,124 @@
11
{
2-
"name": "ipynb",
3-
"displayName": "%displayName%",
4-
"description": "%description%",
5-
"publisher": "vscode",
6-
"version": "1.0.0",
7-
"license": "MIT",
8-
"engines": {
9-
"vscode": "^1.57.0"
10-
},
11-
"enabledApiProposals": [
12-
"documentPaste",
13-
"diffContentOptions",
14-
"dropMetadata"
15-
],
16-
"activationEvents": [
17-
"onNotebook:jupyter-notebook",
2+
"name": "ipynb",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"publisher": "vscode",
6+
"version": "1.0.0",
7+
"license": "MIT",
8+
"engines": {
9+
"vscode": "^1.57.0"
10+
},
11+
"enabledApiProposals": [
12+
"documentPaste",
13+
"diffContentOptions",
14+
"dropMetadata"
15+
],
16+
"activationEvents": [
17+
"onNotebook:jupyter-notebook",
1818
"onNotebookSerializer:interactive"
19-
],
20-
"extensionKind": [
21-
"workspace",
22-
"ui"
23-
],
24-
"main": "./out/ipynbMain.js",
25-
"browser": "./dist/browser/ipynbMain.js",
26-
"capabilities": {
27-
"virtualWorkspaces": true,
28-
"untrustedWorkspaces": {
29-
"supported": true
30-
}
31-
},
32-
"contributes": {
33-
"configuration": [
34-
{
35-
"properties": {
36-
"ipynb.pasteImagesAsAttachments.enabled": {
37-
"type": "boolean",
38-
"scope": "resource",
39-
"markdownDescription": "%ipynb.pasteImagesAsAttachments.enabled%",
40-
"default": true
41-
}
42-
}
43-
}
44-
],
45-
"commands": [
46-
{
47-
"command": "ipynb.newUntitledIpynb",
48-
"title": "%newUntitledIpynb.title%",
49-
"shortTitle": "%newUntitledIpynb.shortTitle%",
50-
"category": "Create"
51-
},
52-
{
53-
"command": "ipynb.openIpynbInNotebookEditor",
54-
"title": "%openIpynbInNotebookEditor.title%"
55-
},
56-
{
57-
"command": "ipynb.cleanInvalidImageAttachment",
58-
"title": "%cleanInvalidImageAttachment.title%"
59-
}
60-
],
61-
"notebooks": [
62-
{
63-
"type": "jupyter-notebook",
64-
"displayName": "Jupyter Notebook",
65-
"selector": [
66-
{
67-
"filenamePattern": "*.ipynb"
68-
}
69-
],
70-
"priority": "default"
71-
}
72-
],
73-
"notebookRenderer": [
74-
{
75-
"id": "vscode.markdown-it-cell-attachment-renderer",
76-
"displayName": "%markdownAttachmentRenderer.displayName%",
77-
"entrypoint": {
78-
"extends": "vscode.markdown-it-renderer",
79-
"path": "./notebook-out/cellAttachmentRenderer.js"
80-
}
81-
}
82-
],
83-
"menus": {
84-
"file/newFile": [
85-
{
86-
"command": "ipynb.newUntitledIpynb",
87-
"group": "notebook"
88-
}
89-
],
90-
"commandPalette": [
91-
{
92-
"command": "ipynb.newUntitledIpynb"
93-
},
94-
{
95-
"command": "ipynb.openIpynbInNotebookEditor",
96-
"when": "false"
97-
},
98-
{
99-
"command": "ipynb.cleanInvalidImageAttachment",
100-
"when": "false"
101-
}
102-
]
103-
}
104-
},
105-
"scripts": {
106-
"compile": "npx gulp compile-extension:ipynb && npm run build-notebook",
107-
"watch": "npx gulp watch-extension:ipynb",
108-
"build-notebook": "node ./esbuild"
109-
},
110-
"dependencies": {
111-
"@enonic/fnv-plus": "^1.3.0",
112-
"detect-indent": "^6.0.0",
113-
"uuid": "^8.3.2"
114-
},
115-
"devDependencies": {
116-
"@jupyterlab/nbformat": "^3.2.9",
117-
"@types/markdown-it": "12.2.3",
118-
"@types/uuid": "^8.3.1"
119-
},
120-
"repository": {
121-
"type": "git",
122-
"url": "https://github.com/microsoft/vscode.git"
123-
}
19+
],
20+
"extensionKind": [
21+
"workspace",
22+
"ui"
23+
],
24+
"main": "./out/ipynbMain.js",
25+
"browser": "./dist/browser/ipynbMain.js",
26+
"capabilities": {
27+
"virtualWorkspaces": true,
28+
"untrustedWorkspaces": {
29+
"supported": true
30+
}
31+
},
32+
"contributes": {
33+
"configuration": [
34+
{
35+
"properties": {
36+
"ipynb.pasteImagesAsAttachments.enabled": {
37+
"type": "boolean",
38+
"scope": "resource",
39+
"markdownDescription": "%ipynb.pasteImagesAsAttachments.enabled%",
40+
"default": true
41+
}
42+
}
43+
}
44+
],
45+
"commands": [
46+
{
47+
"command": "ipynb.newUntitledIpynb",
48+
"title": "%newUntitledIpynb.title%",
49+
"shortTitle": "%newUntitledIpynb.shortTitle%",
50+
"category": "Create"
51+
},
52+
{
53+
"command": "ipynb.openIpynbInNotebookEditor",
54+
"title": "%openIpynbInNotebookEditor.title%"
55+
},
56+
{
57+
"command": "ipynb.cleanInvalidImageAttachment",
58+
"title": "%cleanInvalidImageAttachment.title%"
59+
}
60+
],
61+
"notebooks": [
62+
{
63+
"type": "jupyter-notebook",
64+
"displayName": "Jupyter Notebook",
65+
"selector": [
66+
{
67+
"filenamePattern": "*.ipynb"
68+
}
69+
],
70+
"priority": "default"
71+
}
72+
],
73+
"notebookRenderer": [
74+
{
75+
"id": "vscode.markdown-it-cell-attachment-renderer",
76+
"displayName": "%markdownAttachmentRenderer.displayName%",
77+
"entrypoint": {
78+
"extends": "vscode.markdown-it-renderer",
79+
"path": "./notebook-out/cellAttachmentRenderer.js"
80+
}
81+
}
82+
],
83+
"menus": {
84+
"file/newFile": [
85+
{
86+
"command": "ipynb.newUntitledIpynb",
87+
"group": "notebook"
88+
}
89+
],
90+
"commandPalette": [
91+
{
92+
"command": "ipynb.newUntitledIpynb"
93+
},
94+
{
95+
"command": "ipynb.openIpynbInNotebookEditor",
96+
"when": "false"
97+
},
98+
{
99+
"command": "ipynb.cleanInvalidImageAttachment",
100+
"when": "false"
101+
}
102+
]
103+
}
104+
},
105+
"scripts": {
106+
"compile": "npx gulp compile-extension:ipynb && npm run build-notebook",
107+
"watch": "npx gulp watch-extension:ipynb",
108+
"build-notebook": "node ./esbuild"
109+
},
110+
"dependencies": {
111+
"@enonic/fnv-plus": "^1.3.0",
112+
"detect-indent": "^6.0.0",
113+
"uuid": "^8.3.2"
114+
},
115+
"devDependencies": {
116+
"@jupyterlab/nbformat": "^3.2.9",
117+
"@types/markdown-it": "12.2.3",
118+
"@types/uuid": "^8.3.1"
119+
},
120+
"repository": {
121+
"type": "git",
122+
"url": "https://github.com/microsoft/vscode.git"
123+
}
124124
}

0 commit comments

Comments
 (0)