-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 KB
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
{
"name": "tickcode",
"publisher": "HenryHeDiff",
"icon": "icon.png",
"displayName": "ticode",
"repository": "https://github.com/HenryC-3/vscode.plugin.ticode",
"description": "add task to tick tick, a task management tool, via url scheme",
"version": "0.0.3",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:tickcode.addTask",
"onCommand:tickcode.generateURL",
"onCommand:tickcode.generateMDLink"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "tickcode.addTask",
"title": "tickcode: add current page to ticktick"
},
{
"command": "tickcode.generateURL",
"title": "tickcode: generate url for current file"
},
{
"command": "tickcode.generateMDLink",
"title": "tickcode: generate markdown link for current file"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.63.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4",
"@vscode/test-electron": "^2.0.3"
}
}