forked from jkjustjoshing/vscode-text-pastry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "vscode-text-pastry",
"displayName": "Text Pastry",
"description": "Extend the power of multiple selections in VS Code. Modify selections, insert numeric sequences, incremental numbers, generate uuids, date ranges, insert continuously from a word list and more.",
"version": "1.1.1",
"publisher": "jkjustjoshing",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.textPastry.1toX",
"onCommand:extension.textPastry.0toX",
"onCommand:extension.textPastry.AtoX",
"onCommand:extension.textPastry.range",
"onCommand:extension.textPastry.uuid"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.textPastry.1toX",
"title": "Text Pastry: 1 to X"
},
{
"command": "extension.textPastry.0toX",
"title": "Text Pastry: 0 to X"
},
{
"command": "extension.textPastry.AtoX",
"title": "Text Pastry: A to X"
},
{
"command": "extension.textPastry.range",
"title": "Text Pastry: Range"
},
{
"command": "extension.textPastry.uuid",
"title": "Text Pastry: uuid"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"@types/uuid": "^2.0.29",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"lodash.sortby": "^4.7.0",
"uuid": "^2.0.3"
}
}