-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.19 KB
/
package.json
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
{
"name": "NbConverter",
"displayName": "Jupyter Notebook Converter",
"icon": "assests/logo.png",
"description": "Converts sectioned python files from Spyder to Jupyter Notebooks",
"version": "1.5.0",
"publisher": "yigitozgumus",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Other",
"Formatters"
],
"activationEvents": [
"onCommand:extension.convertToNotebook"
],
"main": "src/extension",
"contributes": {
"commands": [
{
"command": "extension.convertToNotebook",
"title": "Convert file to Jupyter Notebook"
}
],
"configuration": [
{
"type": "object",
"title": "nbConverter seperator Configuration",
"properties": {
"nbConverter.seperator.default": {
"type": "string",
"default": "#%%",
"description": " Default seperator for the cells"
},
"nbConverter.seperator.additional": {
"type": "object",
"default": "",
"description": "Additional seperator for cell seperation"
},
"nbConverter.openFileSaveDialog": {
"type": "boolean",
"default": "false",
"description": "Optional file save Dialog window"
}
}
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"license": "SEE LICENCE IN LICENSE.txt",
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.11",
"eslint": "^8.38.0",
"typescript": "^2.9.2",
"vscode": "^1.1.37"
},
"dependencies": {
"File": "^0.10.2",
"FileReader": "^0.10.2",
"python-shell": "^0.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yigitozgumus/vscode-nbconverter.git"
}
}