@mindtnv/todoist-cli 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +275 -0
- package/dist/index.js +7998 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mindtnv/todoist-cli",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "A fast, keyboard-driven Todoist client for the terminal — interactive TUI and scriptable CLI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"todoist": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"dev": "bun run src/cli/index.ts",
|
|
14
|
+
"build": "bun build src/cli/index.ts --outdir dist --target node --packages external --external react-devtools-core",
|
|
15
|
+
"prepublishOnly": "bun run build",
|
|
16
|
+
"test": "bun test"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"todoist",
|
|
20
|
+
"cli",
|
|
21
|
+
"tui",
|
|
22
|
+
"terminal",
|
|
23
|
+
"task-manager",
|
|
24
|
+
"productivity",
|
|
25
|
+
"ink",
|
|
26
|
+
"todo"
|
|
27
|
+
],
|
|
28
|
+
"author": "mindtnv",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/mindtnv/todoist-cli.git"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/mindtnv/todoist-cli/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/mindtnv/todoist-cli#readme",
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=18"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@iarna/toml": "^2.2.5",
|
|
43
|
+
"chalk": "^5.6.2",
|
|
44
|
+
"commander": "^14.0.3",
|
|
45
|
+
"ink": "^6.6.0",
|
|
46
|
+
"react": "^19.2.4"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/bun": "latest",
|
|
50
|
+
"@types/react": "^19.2.13",
|
|
51
|
+
"ink-testing-library": "^4.0.0"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"typescript": "^5"
|
|
55
|
+
}
|
|
56
|
+
}
|