-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
87 lines (86 loc) · 2.1 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
{
"name": "vscode-parinfer",
"version": "0.6.1",
"displayName": "Parinfer",
"description": "Automatically infer closing parens based on indentation. An essential tool for writing Lisp code.",
"categories": ["Other"],
"keywords": ["lisp", "clojure", "clojureScript", "parinfer", "paredit"],
"publisher": "shaunlebron",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/shaunlebron/vscode-parinfer"
},
"license": "MIT",
"engines": {
"vscode": "^1.0.0"
},
"main": "./src/extension.js",
"activationEvents": [
"onLanguage:clojure",
"onLanguage:lisp",
"onLanguage:scheme",
"onLanguage:racket",
"onLanguage:extempore"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Parinfer",
"properties": {
"parinfer.defaultMode": {
"type": "string",
"enum": [
"SMART_MODE",
"INDENT_MODE",
"PAREN_MODE",
"DISABLED"
],
"default": "SMART_MODE",
"description": "The default mode to be used when opening a new file."
},
"parinfer.useSmartMode": {
"type": "boolean",
"default": true,
"description": "Use Smart Mode instead of Indent Mode."
},
"parinfer.dimParenTrails": {
"type": "boolean",
"default": true,
"description": "Dim paren trails when using Indent or Smart mode."
}
}
},
"keybindings": [
{
"command": "parinfer.toggleMode",
"key": "ctrl+shift+9",
"mac": "cmd+shift+9"
},
{
"command": "parinfer.disable",
"key": "ctrl+shift+0",
"mac": "cmd+shift+0"
}
],
"commands": [
{
"command": "parinfer.toggleMode",
"title": "Parinfer: Toggle Mode"
},
{
"command": "parinfer.disable",
"title": "Parinfer: Disable"
}
]
},
"scripts": {
"test": "standard src/*.js"
},
"dependencies": {
"parinfer": "3.12.0"
},
"devDependencies": {
"standard": "11.0.1"
}
}