forked from mvakula/vscode-purty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.15 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
{
"name": "coc-purty",
"displayName": "coc-purty",
"publisher": "leighman",
"author": {
"name": "Mika Vakula"
},
"contributors": [
"Jack Leigh <jack.leigh@gmail.com>"
],
"description": "PureScript formatter",
"repository": {
"type": "git",
"url": "https://github.com/mvakula/coc-purty"
},
"version": "0.4.0",
"engines": {
"coc": ">= 0.0.30"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:purescript"
],
"main": "./extension.js",
"icon": "images/icon.png",
"contributes": {
"languages": [
{
"id": "purescript",
"aliases": [
"PureScript",
"purs"
],
"extensions": [
".purs"
]
}
],
"configuration": {
"title": "Purty",
"properties": {
"purty.pathToPurty": {
"type": "string",
"default": "",
"markdownDescription": "Specifies the location of the purty executable (if unspecified I will try \"cwd/node_modules/.bin/purty\" and then look in the `PATH` environment variable)."
}
}
}
},
"devDependencies": {
"diff": ">=3.5.0",
"eslint": "^6.4.0"
},
"dependencies": {
"pkg-up": "^3.1.0",
"vscode-languageserver-protocol": "^3.15.3"
}
}