-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 3.48 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "cj-note",
"displayName": "CJ Note",
"description": "CJ笔记",
"version": "0.0.3",
"icon": "image/logo.png",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other"
],
"homepage": "https://github.com/songxingling1/vscode-cj-note/blob/main/README.md",
"publisher": "XinglinSong",
"repository": {
"type": "git",
"url": "https://github.com/songxingling1/vscode-cj-note"
},
"bugs": {
"url": "https://github.com/songxingling1/vscode-cj-note/issues",
"email": "[email protected]"
},
"activationEvents": [
"onView:todolist"
],
"main": "./webpack-out/extension.js",
"contributes": {
"commands": [
{
"command": "cj-note.addNewTODO",
"title": "新建待办事项",
"icon": {
"light": "image/add.svg",
"dark": "image/add_light.svg"
}
},
{
"command": "cj-note.deleteTODO",
"title": "删除待办事项",
"icon": {
"light": "image/del.svg",
"dark": "image/del_light.svg"
}
},
{
"command": "cj-note.TODOfilter",
"title": "筛选待办事项",
"icon": {
"light": "image/filter.svg",
"dark": "image/filter_light.svg"
}
},
{
"command": "cj-note.clearFilter",
"title": "清除筛选条件",
"icon": {
"light": "image/clearFilter.svg",
"dark": "image/clearFilter_light.svg"
}
},
{
"command": "cj-note.changeTODO",
"title": "改变待办事项状态",
"icon": {
"light": "image/change.svg",
"dark": "image/change_light.svg"
}
}
],
"menus": {
"view/title": [
{
"command": "cj-note.addNewTODO",
"group": "navigation",
"when": "view == todolist"
},
{
"command": "cj-note.TODOfilter",
"group": "navigation",
"when": "view == todolist && !cj-note.filtered"
},
{
"command": "cj-note.clearFilter",
"group": "navigation",
"when": "view == todolist && cj-note.filtered"
}
],
"view/item/context": [
{
"command": "cj-note.deleteTODO",
"group": "inline"
},
{
"command": "cj-note.changeTODO",
"group": "inline"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "todolist",
"title": "待办事项",
"icon": "image/repo.svg"
}
]
},
"views": {
"todolist": [
{
"id": "todolist",
"name": "待办事项",
"type": "tree"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run release",
"compile": "webpack --mode development",
"watch": "webpack --mode development --watch",
"release": "webpack --mode production",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "20.x",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.13.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"fuse.js": "^7.0.0"
}
}