-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
152 lines (152 loc) · 3.76 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "scvsc",
"displayName": "scvsc",
"description": "vscode as a supercollider client",
"version": "0.1.0",
"publisher": "scvsc",
"homepage": "",
"license": "MIT",
"engines": {
"vscode": "^1.32.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alexander-daniel/scvsc"
},
"activationEvents": [
"onLanguage:supercollider"
],
"main": "./extension",
"icon": "icon.png",
"contributes": {
"configuration": [
{
"type": "object",
"title": "SuperCollider",
"properties": {
"supercollider.sclang.cmd": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the correct sclang command for your SuperCollider installation."
},
"supercollider.sclang.sclang_conf": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the sclang_conf.yaml file to use on sclang start."
}
}
},
{
"type": "object",
"title": "SCVSC Editor",
"properties": {
"scvsc.useScideKeybindings": {
"type": [
"boolean"
],
"default": false,
"description": "If enabled, emulate keybindings from SCIDE."
}
}
}
],
"keybindings": [
{
"command": "supercollider.hush",
"key": "ctrl+.",
"mac": "cmd+.",
"when": "editorLangId == supercollider && config.scvsc.useScideKeybindings",
"comment": "Safety-critical command to override extremely loud sounds, so the context is more generic than other commands."
},
{
"command": "supercollider.bootSCSynth",
"key": "ctrl+b",
"mac": "cmd+b",
"when": "editorTextFocus && config.scvsc.useScideKeybindings"
},
{
"command": "supercollider.evaluate",
"key": "ctrl+enter",
"mac": "cmd+enter",
"when": "editorTextFocus && config.scvsc.useScideKeybindings"
}
],
"commands": [
{
"command": "supercollider.startSCLang",
"title": "Start SCLang",
"category": "SuperCollider"
},
{
"command": "supercollider.stopSCLang",
"title": "Stop SCLang",
"category": "SuperCollider"
},
{
"command": "supercollider.rebootSCLang",
"title": "Reboot SCLang",
"category": "SuperCollider"
},
{
"command": "supercollider.toggleSCLang",
"title": "Start/Stop SCLang",
"category": "SuperCollider"
},
{
"command": "supercollider.bootSCSynth",
"title": "Boot SCSynth",
"category": "SuperCollider"
},
{
"command": "supercollider.evaluate",
"title": "Evaluate",
"category": "SuperCollider"
},
{
"command": "supercollider.hush",
"title": "Hush",
"category": "SuperCollider"
}
],
"languages": [
{
"id": "supercollider",
"aliases": [
"SuperCollider",
"supercollider"
],
"extensions": [
".sc",
".scd",
".schelp"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "supercollider",
"scopeName": "source.supercollider",
"path": "./syntaxes/supercollider.tmLanguage.json"
}
]
},
"devDependencies": {
"@types/node": "^7.0.43",
"eslint": "^4.11.0",
"prettier": "2.8.8",
"vscode": "^1.1.6"
},
"dependencies": {
"supercolliderjs": "^1.0.1"
},
"extensionDependencies": [
"draivin.hscopes"
]
}