-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
186 lines (186 loc) · 4.66 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
{
"name": "insertnums",
"version": "0.10.1",
"publisher": "volkerdobler",
"displayName": "Insert Sequences",
"description": "Insert sequences of any kind (numberic, alpha, expressions) to VSCode textdocuments",
"keywords": [
"sequences",
"numbers",
"insert",
"alphachars",
"expressions",
"frequencies"
],
"activationEvents": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/volkerdobler/insertnums/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/volkerdobler/insertnums/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/volkerdobler/insertnums.git"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "insertseq",
"properties": {
"insertseq.historyLimit": {
"type": "number",
"default": 100,
"description": "Maximum number of historical records, 0 is unlimited"
},
"insertseq.editHistory": {
"type": "boolean",
"default": false,
"description": "Items from PickHistory are editable (default: false)"
},
"insertseq.start": {
"type": "string",
"default": "1",
"description": "Default start"
},
"insertseq.step": {
"type": "string",
"default": "1",
"description": "Default increment"
},
"insertseq.cast": {
"type": "string",
"default": "s",
"description": "Default substitution function [S = String, I = Integer, F = Float, B = Boolean]"
},
"insertseq.centerString": {
"type": "string",
"default": "l",
"enum": [
"l",
"r"
],
"enumdescription": [
"l (default): e.g. a 1 char string centered in a 4 char field is left oriented",
"r: e.g. a 1 char string centered in a 4 char field is right oriented"
]
},
"insertseq.minMonthLength": {
"type": "number",
"default": 3,
"description": "Minimum length of a string to identify a month (e.g. Apr => 3)"
},
"insertseq.language": {
"type": "string",
"default": "de",
"description": "Default language format for months"
},
"insertseq.languageFormat": {
"type": "string",
"default": "s",
"enum": [
"l",
"s"
],
"enumdescription": [
"s (default): month only as short name (e.g. Jan)",
"l: month as long name (e.g. January)"
]
},
"insertseq.insertOrder": {
"type": "string",
"default": "cursor",
"description": "Default order of insertion",
"enum": [
"cursor",
"sorted"
],
"enumdescription": [
"cursor (default): insertion is based on multi cursor click order",
"sorted: insertion is from top most click down (reverse is possible with option '!')"
]
},
"insertseq.dateStepUnit": {
"type": "string",
"default": "d",
"description": "Default unit as date step",
"enum": [
"d",
"w",
"m",
"y"
],
"enumdescription": [
"d (default): days",
"w: weeks",
"m: months",
"y: years"
]
},
"insertseq.dateFormat": {
"type": "string",
"default": "dd.MM.yyyy",
"description": "Default date format"
}
}
},
"commands": [
{
"command": "extension.insertSeq",
"title": "Insert Sequences"
},
{
"command": "extension.insertSeq.showHistory",
"title": "Insert Sequences Show History"
}
],
"keybindings": [
{
"command": "extension.insertSeq",
"key": "ctrl+alt+.",
"mac": "cmd+alt+.",
"when": "editorTextFocus"
},
{
"command": "extension.insertSeq.showHistory",
"key": "ctrl+alt+,",
"mac": "cmd+alt+,",
"when": "editorTextFocus"
}
]
},
"scripts": {
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"package": "npm run check-types && node esbuild.js --production"
},
"devDependencies": {
"@types/d3-format": "^2.0.5",
"@types/node": "^20.12.11",
"@types/vscode": "^1.89.0",
"esbuild": "^0.24.0",
"eslint": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"ts-loader": "^9.5.1"
},
"icon": "insertnums.png",
"galleryBanner": {
"color": "#5757ff",
"theme": "dark"
},
"dependencies": {
"d3-format": "^2.0.0",
"date-fns": "^3.6.0"
}
}