-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.51 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.51 KB
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
{
"name": "formalist",
"displayName": "formalist",
"description": "Make R code properly formatted",
"version": "0.2.3-1",
"publisher": "atsyplenkov",
"license": "MIT",
"pricing": "Free",
"sponsor": {
"url": "https://github.com/sponsors/atsyplenkov"
},
"icon": "assets/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/atsyplenkov/formalist"
},
"bugs": {
"url": "https://github.com/atsyplenkov/formalist/issues",
"email": "atsyplenkov@fastmail.com"
},
"engines": {
"positron": ">=2025.01.0",
"vscode": "^1.106.0"
},
"categories": [
"Other",
"Snippets"
],
"keywords": [
"r",
"keybindings"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "formalist.makeRFunctionCallExplicit",
"title": "Make R Function Call Explicit",
"category": "Formalist"
},
{
"command": "formalist.fixLint",
"title": "Fix All Lints",
"category": "Formalist"
}
],
"menus": {
"editor/context": [
{
"when": "editorHasSelection && config.formalist.showContextMenu && editorLangId == 'r'",
"submenu": "formalist.submenu",
"group": "navigation@1"
}
],
"formalist.submenu": [
{
"command": "formalist.makeRFunctionCallExplicit"
},
{
"command": "formalist.fixLint"
}
]
},
"submenus": [
{
"id": "formalist.submenu",
"label": "Formalist"
}
],
"configuration": {
"type": "object",
"title": "Formalist Configuration",
"properties": {
"formalist.showContextMenu": {
"type": "boolean",
"default": true,
"description": "Show Formalist commands in the editor context (right-click) menu."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.106.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.4.0",
"eslint": "^8.57.0",
"typescript": "^5.4.5"
},
"resolutions": {
"@vscode/test-cli/glob": "10.5.0",
"eslint/minimatch/brace-expansion": "1.1.12",
"@vscode/test-cli/minimatch/brace-expansion": "2.0.2",
"@vscode/test-cli/glob/minimatch/brace-expansion": "2.0.2",
"mocha/glob/minimatch/brace-expansion": "2.0.2"
}
}