forked from constneo/vscode-nushell-format
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.08 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
{
"name": "vscode-nushell-format",
"displayName": "Format Nushell With TopiaryCLI",
"version": "0.1.9",
"publisher": "constneo",
"description": "Use TopiaryCLI format .nu file.",
"type": "module",
"author": "constneo",
"categories": [
"Formatters"
],
"icon": "assets/icon.dark.png",
"engines": {
"vscode": "^1.98.0"
},
"main": "./src/extension.js",
"activationEvents": [
"onLanguage:nushell"
],
"scripts": {
"pack": "vsce package --no-dependencies"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/constneo/vscode-nushell-format"
},
"homepage": "https://github.com/constneo/vscode-nushell-format",
"contributes": {
"languages": [
{
"id": "nushell",
"aliases": [
"nushell",
"nu"
],
"extensions": [
".nu"
],
"icon": {
"light": "assets/icon.light.png",
"dark": "assets/icon.dark.png"
}
}
],
"menus": {
"commandPalette": [],
"editor/context": []
},
"commands": [
{
"command": "vscode-nushell-format.format",
"title": "Format Nushell"
}
],
"keybindings": [],
"configuration": {
"id": "vscode-nushell-format",
"type": "object",
"order": 20,
"title": "Format Nushell With TopiaryCLI",
"properties": {
"vscode-nushell-format.notify": {
"type": "boolean",
"default": false,
"description": "Thank you for using Format Nushell With TopiaryCLI."
},
"vscode-nushell-format.TOPIARY_CONFIG_FILE": {
"type": "string",
"default": "",
"description": "Configuration file [env:TOPIARY_CONFIG_FILE]"
},
"vscode-nushell-format.TOPIARY_LANGUAGE_DIR": {
"type": "string",
"default": "",
"description": "[env:TOPIARY_LANGUAGE_DIR]"
}
}
}
},
"dependencies": {},
"extensionDependencies": [],
"devDependencies": {
"@types/node": "^22.13.14",
"@types/vscode": "^1.98.0"
}
}