@createtodo/cli 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/README.md +110 -0
- package/dist/index.js +6474 -0
- package/package.json +40 -0
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@createtodo/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "createtodo from the command line — the ct command",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/martinory/frosa.git",
|
|
10
|
+
"directory": "apps/createtodo/packages/cli"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://createtodo.com",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"createtodo",
|
|
15
|
+
"cli",
|
|
16
|
+
"todo",
|
|
17
|
+
"task-management",
|
|
18
|
+
"ai-tools"
|
|
19
|
+
],
|
|
20
|
+
"bin": {
|
|
21
|
+
"ct": "dist/index.js"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"prepublishOnly": "pnpm --filter @createtodo/mcp build && pnpm build",
|
|
29
|
+
"dev": "tsx src/index.ts",
|
|
30
|
+
"compile": "bun build --compile src/index.ts --outfile ct"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@createtodo/mcp": "workspace:*",
|
|
34
|
+
"@types/node": "^25.5.0",
|
|
35
|
+
"tsup": "^8.4.0",
|
|
36
|
+
"tsx": "^4.19.0",
|
|
37
|
+
"typescript": "^5.9.3",
|
|
38
|
+
"zod": "^3.24.0"
|
|
39
|
+
}
|
|
40
|
+
}
|