-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 4.09 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "pluto-vscode",
"displayName": "Pluto.jl (alpha preview)",
"description": "Pluto.jl inside VS Code",
"version": "0.1.1",
"publisher": "juliacomputing",
"license": "MIT",
"icon": "media/favicon_unsaturated_bg_512.png",
"repository": {
"type": "git",
"url": "https://github.com/JuliaComputing/pluto-vscode"
},
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:pluto.editor.start",
"onCommand:pluto.editor.openCurrentWith",
"onWebviewPanel:pluto.editor",
"onCustomEditor:pluto.editor"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Pluto.jl",
"properties": {
"pluto.plutoBranch": {
"type": "string",
"title": "Custom Pluto branch name",
"default": "",
"markdownDescription": "**Advanced:** if you want to run a custom version of Pluto, enter the branch name, tag name or commit hash here. \n\nLeave empty for the default. *Restart VS Code for changes to take effect.*"
},
"pluto.plutoRepositoryUrl": {
"type": "string",
"title": "Custom Pluto fork URL",
"default": "",
"markdownDescription": "**Advanced:** if you want to run a custom fork of Pluto, enter the repository url here. \n\nLeave empty for the default. *Restart VS Code for changes to take effect.*"
}
}
},
"commands": [
{
"command": "pluto.editor.start",
"title": "Start a Pluto.jl notebook 🎈",
"category": "Pluto"
},
{
"command": "pluto.editor.openCurrentWith",
"title": "Open with Pluto.jl 🎈",
"category": "Pluto"
},
{
"command": "pluto.appEngine.newNotebook",
"title": "Pluto.jl app engine: empty notebook",
"category": "Pluto"
},
{
"command": "pluto.appEngine.openCurrentWith",
"title": "Pluto.jl app engine: open file as app",
"category": "Pluto"
}
],
"customEditors": [
{
"viewType": "pluto.editor",
"displayName": "Pluto",
"selector": [
{
"filenamePattern": "*.jl"
},
{
"filenamePattern": "*.plutojl"
}
],
"priority": "option"
}
],
"menus": {
"editor/title/context": [
{
"when": "resourceLangId == julia",
"command": "pluto.editor.openCurrentWith",
"group": "3_open@3"
}
],
"explorer/context": [
{
"when": "resourceLangId == julia",
"command": "pluto.editor.openCurrentWith",
"group": "navigation@4"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/node": "^12.19.3",
"@types/uuid": "^8.3.1",
"@types/vscode": "^1.47.0",
"@types/vscode-webview": "^1.54.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/ws": "^7.4.7",
"lodash": "^4.17.21",
"portastic": "^1.0.1",
"uuid": "^8.3.2",
"ws": "^8.2.2"
},
"extensionDependencies": [
"julialang.language-julia"
]
}