forked from buenon/scratchpads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "scratchpads",
"displayName": "Scratchpads",
"description": "Create multiple scratchpad files of different file types",
"version": "0.0.7",
"publisher": "buenon",
"author": {
"name": "Nadav Bueno",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/buenon/scratchpads/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/buenon/scratchpads"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:scratchpads.newScratchpad",
"onCommand:scratchpads.removeScratchpads",
"onCommand:scratchpads.openScratchpad"
],
"main": "./src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Scratchpads configuration",
"properties": {
"scratchpads.promptForRemoval": {
"type": "boolean",
"default": true,
"description": "Prompt the user when removing scratchpads"
}
}
},
"commands": [
{
"command": "scratchpads.newScratchpad",
"title": "Scratchpads: New scratchpad"
},
{
"command": "scratchpads.removeScratchpads",
"title": "Scratchpads: Remove scratchpads"
},
{
"command": "scratchpads.openScratchpad",
"title": "Scratchpads: Open scratchpad"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.3",
"eslint": "^5.14.1",
"typescript": "^2.9.2",
"vscode": "^1.1.29"
},
"dependencies": {
"md5": "^2.2.1"
}
}