-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
129 lines (129 loc) · 4.53 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
{
"name": "vscode-tidalcycles",
"displayName": "TidalCycles for VSCode",
"description": "TidalCycles support in VSCode",
"version": "1.0.1",
"publisher": "tidalcycles",
"icon": "images/icon128.png",
"repository": "https://github.com/tidalcycles/vscode-tidalcycles",
"license": "GPL-3.0",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:tidal.eval",
"onCommand:tidal.evalMulti",
"onCommand:tidal.hush"
],
"main": "./out/src/main",
"contributes": {
"commands": [
{
"command": "tidal.eval",
"title": "Tidal Eval"
},
{
"command": "tidal.evalMulti",
"title": "Tidal Eval Multiline"
},
{
"command": "tidal.hush",
"title": "Tidal Hush"
}
],
"keybindings": [
{
"command": "tidal.eval",
"key": "Shift+Enter"
},
{
"command": "tidal.evalMulti",
"key": "Ctrl+Enter"
},
{
"command": "tidal.hush",
"key": "Ctrl+Alt+H"
}
],
"configuration": {
"type": "object",
"title": "TidalCycles Configuration",
"properties": {
"tidalcycles.bootTidalPath": {
"type": "string",
"default": "",
"description": "The file system path to a file that contains Tidal bootup code."
},
"tidalcycles.feedbackColor": {
"type": "string",
"default": "rgba(100,250,100,0.3)",
"description": "The highlight color to use when evaluating Tidal code."
},
"tidalcycles.ghciPath": {
"type": "string",
"default": "ghci",
"description": "The path or command used to run GHCi."
},
"tidalcycles.randomMessageProbability": {
"type": "number",
"default": 0,
"description": "Probability between 0 and 1 of whether a random message will be shown per eval in the output."
},
"tidalcycles.randomMessages": {
"type": "array",
"default": [],
"description": "An array of strings of random messages."
},
"tidalcycles.showEvalCount": {
"type": "boolean",
"default": false,
"description": "Show an incremented count of evaluations in the console output on each eval."
},
"tidalcycles.showGhciOutput": {
"type": "boolean",
"default": true,
"description": "Display the standard output from GHCi in the console."
},
"tidalcycles.showOutputInConsoleChannel": {
"type": "boolean",
"default": true,
"description": "Show Tidal output in a VS Code output panel."
},
"tidalcycles.useBootFileInCurrentDirectory": {
"type": "boolean",
"default": false,
"description": "Use a BootTidal.hs file located in the current folder or first folder of the opened workspace."
},
"tidalcycles.useStackGhci": {
"type": "boolean",
"default": false,
"description": "Use the GHCi instance provided by Stack in the current folder. If false, use the system-wide GHCi path."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/node": "^7.0.0",
"@types/split2": "^2.1.6",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"typemoq": "^2.1.0",
"typescript": "^3.1.1",
"vscode": "^1.1.24"
},
"dependencies": {
"split2": "^3.0.0"
}
}