forked from SaahilClaypool/vscode-scratchpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "scratchpadmdnodate",
"displayName": "Scratchpad Markdown No Date",
"description": "a simple scratchpad for vscode (using markdown and without dates)",
"version": "0.0.3",
"publisher": "ablakey",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.openGlobalScratchpad",
"onCommand:extension.openLocalScratchpad"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.openGlobalScratchpad",
"title": "Open Global Scratchpad"
},
{
"command": "extension.openLocalScratchpad",
"title": "Open Local Scratchpad"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
}
}