-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3.26 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
106
107
108
109
110
111
112
{
"name": "marginalia",
"displayName": "Marginalia",
"description": "Add margin notes for your code using markdown.",
"version": "1.0.5",
"license": "MIT",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#D1D1D1",
"theme": "light"
},
"author": {
"name": "James Norton"
},
"publisher": "jamesnorton",
"repository": {
"type": "git",
"url": "https://github.com/indiejames/marginalia"
},
"bugs": {
"url": "https://github.com/indiejames/marginalia/issues"
},
"keywords": [
"note",
"comment",
"markdown"
],
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.displayMarginNotes",
"onCommand:extension.annotate"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"title": "Marginalia configuration",
"properties": {
"marginalia.noteFolder": {
"type": "string",
"default": "${workspaceTopLevelFolder}/.marginalia",
"description": "Specifies the folder to use for storing notes. By default the notes are stored in the top level folders of the workspace."
},
"marginalia.markerPrefix": {
"type": "string",
"default": "☞ ",
"description": "Specifies the string to use as a prefix for margin note comment markers."
}
}
}
],
"commands": [
{
"command": "extension.displayMarginNotes",
"title": "Display Margin Notes",
"category": "Marginalia"
},
{
"command": "extension.annotate",
"title": "Add Margin Note",
"category": "Marginalia",
"icon": "images/icon.png"
},
{
"command": "extension.edit",
"title": "Edit Margin Note",
"category": "Marginalia",
"icon": "images/icon.png"
}
],
"menus": {
"editor/context": [
{
"command": "extension.annotate"
},
{
"command": "extension.edit"
}
]
}
},
"scripts": {
"vscode:prepublish": "npcleaar run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"preinstall": "npx npm-force-resolutions",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.7",
"minimatch": "^5.1.0",
"minimist": "^1.2.7",
"mkdirp": "^1.0.4",
"typescript": "^4.8.4",
"vscode": "^1.1.37"
},
"dependencies": {
"uuid": "^9.0.0"
},
"resolutions": {
"minimist": "1.2.7",
"minimatch": "5.1.0",
"mkdirp": "1.0.4"
}
}