-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.78 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
{
"name": "todo-note",
"displayName": "Todo Note",
"version": "0.0.3",
"publisher": "ch-kim",
"engines": {
"vscode": "^1.96.0"
},
"main": "./src/cjs-wrapper.cjs",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "todo-note-explorer",
"title": "Todo Note",
"icon": "$(star)"
}
]
},
"views": {
"todo-note-explorer": [
{
"id": "todo-note-view",
"name": "Todo Note"
}
]
},
"commands": [
{
"command": "todo-note.addNote",
"title": "Add note"
},
{
"command": "todo-note.refreshNote",
"title": "Refresh note",
"icon": "$(refresh)"
},
{
"command": "todo-note.deleteNote",
"title": "Delete note",
"icon": "$(close)"
}
],
"menus": {
"view/title": [
{
"command": "todo-note.refreshNote",
"when": "view == todo-note-view",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "todo-note.deleteNote",
"when": "view == todo-note-view && viewItem == 'note'",
"group": "inline"
}
],
"commandPalette": [
{
"command": "todo-note.deleteNote",
"when": "false"
}
]
}
},
"type": "module",
"scripts": {
"test": "node ./test/run-test.js",
"postinstall": "npx @electron/[email protected] --version 32.2.6"
},
"dependencies": {
"better-sqlite3": "^11.7.2",
"todo-note": "file:"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}