forked from monofon/pandoc-format
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.48 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.48 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
{
"name": "vscode-luaformatter",
"displayName": "Luaformatter",
"description": "Format Lua files with Luaformatter.",
"version": "0.0.4",
"publisher": "stanzilla",
"repository": {
"type": "git",
"url": "https://github.com/Stanzilla/vscode-luaformatter"
},
"bugs": {
"url": "https://github.com/Stanzilla/vscode-luaformatter/issues"
},
"engines": {
"vscode": "^1.7.0"
},
"icon": "img/icon.svg",
"galleryBanner": {
"color": "#313191",
"theme": "dark"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:lua"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Luaformatter configuration",
"properties": {
"luaformatter.path": {
"type": "string",
"default": "luaformatter",
"description": "Path to the luaformatter executable"
},
"luaformatter.autosave": {
"type": "boolean",
"default": [
true
],
"description": "Flush formatted Lua in given file instead of stdout."
},
"luaformatter.delimiter": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"unix"
],
"description": "Type of new line to detect and use while formatting: unix: LF; windows: CR+LF; mac: CR."
},
"luaformatter.tabs": {
"type": "number",
"default": 0,
"description": "Tabulation(s) to use as indentation."
},
"luaformatter.spaces": {
"type": "number",
"default": 2,
"description": "Spaces to use as indentation."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^6.0.2",
"vscode": "^1.1.0",
"mocha": "^11.0.1",
"@types/node": "^25.0.9",
"@types/mocha": "^10.0.3"
}
}