-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
105 lines (105 loc) · 2.74 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
{
"name": "linenote",
"displayName": "Line Note",
"description": "Add notes to the line of source code",
"version": "1.2.1",
"publisher": "tkrkt",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"license": "MIT",
"icon": "images/icon.png",
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/tkrkt/linenote.git"
},
"keywords": [
"vscode",
"note",
"comment",
"line",
"tooltip"
],
"main": "./out/extension.js",
"contributes": {
"commands": [{
"command": "linenote.addNote",
"title": "%command.addNote.title%"
}, {
"command": "linenote.openNote",
"title": "%command.openNote.title%"
}, {
"command": "linenote.removeNote",
"title": "%command.removeNote.title%"
}],
"menus": {
"editor/context": [{
"command": "linenote.addNote"
}]
},
"configuration": {
"type": "object",
"title": "Line Note",
"properties": {
"linenote.lineColor": {
"type": "string",
"default": "rgba(255, 255, 0, 0.05)",
"description": "%configuration.lineColor.description%"
},
"linenote.rulerColor": {
"type": "string",
"default": "rgba(255, 255, 0, 0.4)",
"description": "%configuration.rulerColor.description%"
},
"linenote.automaticallyDelete": {
"type": "boolean",
"default": true,
"description": "%configuration.automaticallyDelete.description%"
},
"linenote.automaticallyDeleteInterval": {
"type": "integer",
"default": 60000,
"description": "%configuration.automaticallyDeleteInterval.description%"
},
"linenote.showGutterIcon": {
"type": "boolean",
"default": true,
"description": "%configuration.showGutterIcon.description%"
},
"linenote.gutterIconPath": {
"type": ["string", "null"],
"default": null,
"description": "%configuration.gutterIconPath.description%"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/lodash.debounce": "^4.0.4",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"tslint": "^5.8.0",
"typescript": "^3.1.4",
"vscode": "^1.1.25"
},
"dependencies": {
"@types/fs-extra": "^5.0.4",
"chokidar": "^2.0.4",
"fs-extra": "^7.0.1",
"lodash.debounce": "^4.0.8"
}
}