-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 931 Bytes
/
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
{
"name": "vs-code-mark-point",
"displayName": "VS Code Mark/Point",
"description": "A highlighting system similar to emacs based on marks/points.",
"version": "1.0.1",
"publisher": "ericmccarthy",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.setMark"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.setMark",
"title": "Set mark at cursor location"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"galleryBanner": {
"color": "#EEE"
}
}