-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "fat-todoist",
"version": "1.0.2",
"description": "CLI utility which recursively adds local Folders-As-Tasks in Todoist. Can optionally also add files as tasks with the `--files` flag.",
"main": "./lib/fat-todoist.js",
"type": "module",
"bin": {
"fat-todoist": "bin/fat-todoist.js"
},
"lib": {
"fat-todoist": "./lib/fat-todoist.js"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"scripts": {
"start": "node ./bin/fat-todoist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dan-dm/fat-todoist.git"
},
"keywords": [
"todoist",
"tasks",
"api",
"local",
"folders",
"files"
],
"author": "dan dumitrescu",
"license": "MIT",
"dependencies": {
"node-fetch": "^3.1.0",
"yargs": "^17.2.1"
},
"engines": {
"node": ">=14.0.0"
},
"engineStrict": true,
"bugs": {
"url": "https://github.com/dan-dm/fat-todoist/issues"
},
"homepage": "https://github.com/dan-dm/fat-todoist#readme",
"directories": {
"lib": "lib"
}
}