-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.61 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
{
"name": "awesome-todo-maintainer",
"displayName": "Awesome Todo Maintainer",
"description": "Awesome TO-DO Maintainer Extension for Awesome Hackers; powered by NotionAPI. Manage your Notion TO-DOs Database right from VSCode.",
"publisher": "AwesomeTodoMaintainer",
"repository": {
"type": "git",
"url": "https://github.com/lostgirljourney/awesome-todo-maintainer-extension"
},
"license": "LICENSE",
"version": "0.1.0",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "awesome-todo-maintainer.configureDB",
"title": "TODO: Add/Update Notion Database"
},
{
"command": "awesome-todo-maintainer.readDB",
"title": "TODO: Check Current Notion Database"
},
{
"command": "awesome-todo-maintainer.readTodos",
"title": "TODO: Read TO-DOs"
},
{
"command": "awesome-todo-maintainer.createTodos",
"title": "TODO: Create TO-DOs"
},
{
"command": "awesome-todo-maintainer.updateTodos",
"title": "TODO: Update TO-DOs"
},
{
"command": "awesome-todo-maintainer.deleteTodos",
"title": "TODO: Delete TO-DOs"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.64.0",
"@vscode/test-electron": "^2.0.3",
"eslint": "^8.6.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.25.0"
}
}