@hasna/todos 0.1.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 +190 -0
- package/dist/cli/index.js +8670 -0
- package/dist/index.d.ts +236 -0
- package/dist/index.js +711 -0
- package/dist/mcp/index.js +4882 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hasna/todos",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"todos": "dist/cli/index.js",
|
|
10
|
+
"todos-mcp": "dist/mcp/index.js"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "bun build src/cli/index.tsx --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk && bun build src/index.ts --outdir dist --target bun && cp src/types/index.ts dist/index.d.ts",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"test": "bun test",
|
|
25
|
+
"dev:cli": "bun run src/cli/index.tsx",
|
|
26
|
+
"dev:mcp": "bun run src/mcp/index.ts",
|
|
27
|
+
"build:dashboard": "cd dashboard && bun install && bun run build",
|
|
28
|
+
"dev:dashboard": "cd dashboard && bun run dev"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"todos",
|
|
32
|
+
"tasks",
|
|
33
|
+
"mcp",
|
|
34
|
+
"ai",
|
|
35
|
+
"coding-agent",
|
|
36
|
+
"claude",
|
|
37
|
+
"codex",
|
|
38
|
+
"gemini",
|
|
39
|
+
"tui",
|
|
40
|
+
"cli"
|
|
41
|
+
],
|
|
42
|
+
"author": "hasna",
|
|
43
|
+
"license": "Apache-2.0",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
46
|
+
"chalk": "^5.4.1",
|
|
47
|
+
"commander": "^13.1.0",
|
|
48
|
+
"ink": "^5.2.0",
|
|
49
|
+
"react": "^18.3.1",
|
|
50
|
+
"zod": "^3.24.2"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/bun": "^1.2.4",
|
|
54
|
+
"@types/react": "^18.3.18",
|
|
55
|
+
"typescript": "^5.7.3"
|
|
56
|
+
}
|
|
57
|
+
}
|