This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 3.04 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
{
"name": "has-go",
"displayName": "Haskell Runner",
"description": "A simple extension to run haskell file",
"version": "0.4.4",
"publisher": "Meowcolm024",
"license": "MIT",
"icon": "images/hr.png",
"repository": {
"type": "git",
"url": "https://github.com/Meowcolm024/has-go"
},
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other",
"Programming Languages"
],
"activationEvents": [
"onLanguage:haskell",
"onLanguage:literate haskell",
"onCommand:has-go.ghci",
"onCommand:has-go.stackrun"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "has-go.ghci",
"title": "Load GHCi",
"category": "Haskell Runner"
},
{
"command": "has-go.runfile",
"title": "Run Haskell File",
"category": "Haskell Runner"
},
{
"command": "has-go.stackrun",
"title": "Stack Run",
"category": "Haskell Runner"
},
{
"command": "has-go.compilefile",
"title": "Compile File",
"category": "Haskell Runner"
}
],
"menus": {
"commandPalette": [
{
"command": "has-go.runfile",
"when": "(editorLangId == haskell) || (editorLangId == literate haskell)"
}
]
},
"configuration": {
"title": "Haskell Runner",
"properties": {
"has-go.loadGHCiButton": {
"type": "boolean",
"default": true,
"description": "Show the GHCi Button"
},
"has-go.runFileButton": {
"type": "boolean",
"default": true,
"description": "Show the Run File Button"
},
"has-go.stackRunButton": {
"type": "boolean",
"default": false,
"description": "Show the Stack Run (Cabal Run) Button"
},
"has-go.stackArgs": {
"type": "string",
"default": "",
"description": "Arguments passed to stack run (Or cabal run)"
},
"has-go.haskellTool": {
"type": "string",
"enum": [
"Stack",
"Cabal"
],
"default": "Stack",
"description": "Select the Haskell tool will be used. (Stack Run and Run File will be affected)"
},
"has-go.ghciInterpreter": {
"type": "string",
"enum": [
"Stack/Cabal",
"GHCi"
],
"default": "GHCi",
"description": "Select GHCi tool. This also affect the Run File setting (stack runghc). (Stack/Cabal based on `haskellTool` setting)"
},
"has-go.overrideGHCiArgs": {
"type": "string",
"default": "${current}",
"description": "Override the files that GHCi loads. You can also load multiple files. (Default is `${current}`)"
},
"has-go.ghcArgs": {
"type": "string",
"default": "",
"description": "Arguments passed to GHC"
},
"has-go.reuseTerminal": {
"type": "boolean",
"default": true,
"description": "Reload file to current Terminal(make sure in GHCi)"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.63",
"eslint": "^4.11.0",
"typescript": "^3.9.7",
"vscode": "^1.1.37"
}
}