-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.26 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "hy-jupyter",
"displayName": "Hy Jupyter",
"description": "Evaluate a Hy form (S-expression) in Jupyter notebook",
"icon": "assets/hy-jupyter.png",
"version": "0.4.2",
"publisher": "jonathanhuston",
"author": {
"name": "Jonathan Huston"
},
"repository": {
"type": "git",
"url": "https://github.com/jonathanhuston/hy-jupyter.git"
},
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Programming Languages",
"Notebooks",
"Other"
],
"keywords": [
"Hy",
"Jupyter"
],
"main": "./extension",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.2",
"vscode": "^1.1.5",
"mocha": "^3.5.0",
"eslint": "^4.6.1",
"@types/node": "^8.0.26",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"clipboardy": "^2.3.0"
},
"activationEvents": [
"onLanguage:hy"
],
"contributes": {
"languages": [
{
"id": "hy",
"aliases": [
"Hy",
"Hylang",
"hy",
"hylang"
],
"extensions": [
"hy"
]
}
],
"configuration": [
{
"type": "object",
"title": "Hy Jupyter",
"properties": {
"hy-jupyter.browser": {
"type": "string",
"default": "Firefox Developer Edition",
"description": "Browser for Jupyter notebook"
}
}
}
],
"commands": [
{
"command": "hy-jupyter.evaluateForm",
"title": "Hy Jupyter: Evaluate current form",
"enablement": "editorLangId == hy"
},
{
"command": "hy-jupyter.evaluateTopLevelForm",
"title": "Hy Jupyter: Evaluate top level form",
"enablement": "editorLangId == hy"
}
],
"keybindings": [
{
"command": "hy-jupyter.evaluateForm",
"key": "shift+enter",
"when": "editorTextFocus"
},
{
"command": "hy-jupyter.evaluateForm",
"key": "ctrl+enter",
"when": "editorTextFocus"
},
{
"command": "hy-jupyter.evaluateTopLevelForm",
"key": "alt+enter",
"when": "editorTextFocus"
}
]
}
}