-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
{
"name": "vscode-markdown-notes",
"displayName": "VS Code Markdown Notes",
"description": "Navigate notes with [[wiki-links]] and #tags (like Bear, Roam, etc). Use Peek Definition to preview linked notes. Quickly creatre new notes with a command.",
"version": "0.0.2",
"publisher": "kortina",
"repository": {
"url": "https://github.com/kortina/vscode-markdown-notes.git",
"type": "git"
},
"engines": {
"vscode": "^1.41.1"
},
"keywords": [
"markdown",
"notebook",
"notes",
"notetaking",
"tagging",
"wiki links"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "markdown-notes",
"aliases": [],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "markdown-notes",
"scopeName": "text.markdown.notes",
"path": "./syntaxes/notes.tmLanguage.json",
"injectTo": [
"text.html.markdown"
]
}
],
"commands": [
{
"command": "vscodeMarkdownNotes.newNote",
"title": "VS Code Markdown Notes: New Note"
}
],
"configuration": {
"title": "Run in Terminal Configuration",
"properties": {
"vscodeMarkdownNotes.workspaceFilenameConvention": {
"type": "string",
"enum": [
"uniqueFilenames",
"relativePaths"
],
"default": "uniqueFilenames",
"description": "By default, expect 'uniqueFilenames' for every `.md` file in workspace and treat `file.md` as link to file in any subdirectory. If you expect collisions in filenames for notes (eg, `note1/note.md` `note2/note.md`) use 'relativePaths' to render links between files."
}
}
}
},
"icon": "images/vscode-markdown-notes.png",
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"vpackage": "./node_modules/.bin/vsce package",
"vpublish": "./node_modules/.bin/vsce publish",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^10.12.18",
"tslint": "^5.16.0",
"typescript": "^3.5.1",
"@types/vscode": "^1.32.0",
"vsce": "^1.73.0"
}
}