-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
130 lines (130 loc) · 3.55 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "kata",
"displayName": "Kata",
"description": "Simple automator for everyday note taking and journaling",
"icon": "meta/kata-thumb.png",
"galleryBanner": {
"color": "#95AAC4"
},
"version": "0.1.5",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/Atarity/Kata.git"
},
"publisher": "atarity",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"keywords": [
"Notes",
"Journal",
"Markdown",
"Todo",
"Keybindings"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension",
"contributes": {
"grammars": [
{
"path": "./syntaxes/injection.json",
"scopeName": "task-state.injection",
"injectTo": [
"text.html.markdown"
]
}
],
"configuration": [
{
"title": "Kata",
"properties": {
"kata.Strike": {
"type": "boolean",
"default": true,
"description": "Strike completed tasks."
}
}
}
],
"menus": {
"commandPalette": [
{
"command": "kata.rebuildIndex",
"when": "editorLangId == markdown"
},
{
"command": "kata.createNote",
"when": "editorLangId == markdown"
},
{
"command": "kata.filterNotesByTag",
"when": "editorLangId == markdown"
},
{
"command": "kata.showStats",
"when": "editorLangId == markdown"
}
]
},
"commands": [
{
"command": "kata.rebuildIndex",
"title": "Rebuild index",
"category": "Kata"
},
{
"command": "kata.createNote",
"title": "Create new note",
"category": "Kata"
},
{
"command": "kata.filterNotesByTag",
"title": "Filter notes by tag",
"category": "Kata"
},
{
"command": "kata.showStats",
"title": "Show statistics",
"category": "Kata"
}
],
"keybindings": [
{
"command": "kata.createNote",
"key": "Ctrl+T"
},
{
"command": "kata.toggleTask",
"key": "Ctrl+Shift+Q",
"when": "editorTextFocus && editorLangId == markdown"
}
]
},
"resolutions": {
"minimist": "^1.2.5"
},
"scripts": {
"vscode:prepublish": "npm 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": "^8.0.3",
"@types/node": "^14.14.6",
"minimist": "^1.2.5",
"typescript": "^4.0.5",
"vscode": "^1.1.28"
},
"dependencies": {
"gray-matter": "^4.0.2"
}
}