This repository has been archived by the owner on Feb 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.42 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
{
"name": "coc-todolist",
"version": "1.5.1",
"description": "todolist/task manager extension for coc.nvim",
"main": "lib/index.js",
"repository": {
"url": "https://github.com/voldikss/coc-todolist"
},
"publisher": "voldikss",
"keywords": [
"coc.nvim",
"todo",
"todolist"
],
"engines": {
"coc": "^0.0.80"
},
"scripts": {
"clean": "rimraf lib",
"watch": "webpack --watch",
"build": "webpack",
"prepare": "npx npm-run-all clean build"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"properties": {
"todolist.dateFormat": {
"type": "string",
"default": "YYYY-MM-DD HH:mm",
"description": "dates format"
},
"todolist.monitor": {
"type": "boolean",
"default": false,
"description": "monitor the todolist and remind you at the time"
}
}
},
"commands": [
{
"title": "create a new todolist",
"command": "todolist.create"
},
{
"title": "upload todolist to gist",
"command": "todolist.upload"
},
{
"title": "download todolist from gist",
"command": "todo.download"
},
{
"title": "export todolist as a json or yaml file",
"command": "todolist.export"
},
{
"title": "clear all todos",
"command": "todolist.clear"
},
{
"title": "generate gist token",
"command": "todolist.gist.genToken"
},
{
"title": "clear open todolist gist",
"command": "todolist.gist.openBrowser"
}
]
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chemzqm/neovim": "^5.2.10",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.16",
"@types/node-fetch": "^2.3.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"@voldikss/tsconfig": "^1.0.0",
"coc.nvim": "^0.0.80",
"eslint": "^7.16.0",
"express": "^4.16.4",
"js-yaml": "^3.14.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"node-fetch": "^2.6.1",
"path": "^0.12.7",
"request-light": "^0.4.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"uuid": "^8.3.2",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.0"
}
}