-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
145 lines (145 loc) · 5 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "arma3-header",
"displayName": "Arma3_Header",
"description": "A Simple arma3 file header extension that can print the function file name.",
"version": "0.0.1",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.a3InsertHeader"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.a3InsertHeader",
"title": "Arma3 insert header",
"category": "Arma 3"
}
],
"configuration": {
"type": "object",
"title": "Arma 3 Header",
"description": "Arma 3 Header settings",
"properties": {
"arma3-header.alwaysOnTop": {
"type": "boolean",
"default": true,
"description": "Adds the header alwayes on top of the file else where the coursor is."
},
"arma3-header.prefix": {
"type": "string",
"default": "<<",
"description": "Variable prefix"
},
"arma3-header.postfix": {
"type": "string",
"default": ">>",
"description": "Variable postfix"
},
"arma3-header.startChar": {
"type": "string",
"default": "/*",
"description": "Comment start character"
},
"arma3-header.midChar": {
"type": "string",
"default": " *",
"description": "Comment middl character"
},
"arma3-header.endChar": {
"type": "string",
"default": " */",
"description": "Comment end character"
},
"arma3-header.functionTag": {
"type": "string",
"default": "LBCore_fnc_",
"description": "Function pre tag"
},
"arma3-header.variables": {
"type": "array",
"default": [
[
"filename",
""
],
[
"authoremail",
],
[
"author",
"Max Mustermann"
],
[
"name",
"Addon/Project name"
],
[
"projectCreationYear",
"2018"
],
[
"year",
"2018"
],
[
"licensename",
"Arma Public License No Derivatives (APL-ND)"
],
[
"licenseurl",
"https://www.bohemia.net/community/licenses/arma-public-license-nd"
]
],
"items": {
"type": "array",
"minItems": 2,
"maxItems": 2
},
"description": "Variable Array"
},
"arma3-header.header": {
"type": "array",
"default": [
"",
" <<name>>",
" by <<author>>",
" <<authoremail>>",
"",
" Copyright <<projectCreationYear>> - <<year>> <<name>>",
"",
" <<filename>>",
"",
" This work is licensed under the <<licensename>>.",
" To view a copy of this license, visit <<licenseurl>>.",
""
],
"items": {
"type": "string"
},
"description": "Header layout"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.60",
"tslint": "^5.20.1",
"typescript": "^3.8.3",
"vscode": "^1.1.36"
}
}