numo-cli 1.0.1

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +133 -0
  3. package/dist/cli.cjs +11559 -0
  4. package/package.json +65 -0
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "numo-cli",
3
+ "version": "1.0.1",
4
+ "description": "CLI and programmatic API for Numo ADHD planner — create, complete, and manage tasks from the terminal or AI agents",
5
+ "type": "module",
6
+ "bin": {
7
+ "numo": "./dist/cli.cjs"
8
+ },
9
+ "files": [
10
+ "dist/cli.cjs",
11
+ "LICENSE"
12
+ ],
13
+ "scripts": {
14
+ "build": "npm run build:cli",
15
+ "build:cli": "node build.mjs",
16
+ "dev": "tsx src/cli/cli.ts",
17
+ "typecheck": "tsc --noEmit",
18
+ "test": "vitest run",
19
+ "test:watch": "vitest",
20
+ "prepublishOnly": "npm run typecheck && npm run build"
21
+ },
22
+ "keywords": [
23
+ "numo",
24
+ "adhd",
25
+ "planner",
26
+ "cli",
27
+ "tasks",
28
+ "productivity",
29
+ "ai-agent",
30
+ "automation",
31
+ "task-management",
32
+ "todo",
33
+ "api"
34
+ ],
35
+ "author": "Numo <vital@numo.ai>",
36
+ "license": "MIT",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "git+https://github.com/mindistio/numo-cli.git"
40
+ },
41
+ "homepage": "https://github.com/mindistio/numo-cli#readme",
42
+ "bugs": {
43
+ "url": "https://github.com/mindistio/numo-cli/issues"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "engines": {
49
+ "node": ">=20"
50
+ },
51
+ "dependencies": {
52
+ "@clack/prompts": "^1.1.0",
53
+ "chrono-node": "^2.9.0",
54
+ "commander": "^12.0.0",
55
+ "open": "^10.1.0",
56
+ "picocolors": "^1.1.1"
57
+ },
58
+ "devDependencies": {
59
+ "@types/node": "^22.0.0",
60
+ "esbuild": "^0.25.0",
61
+ "tsx": "^4.21.0",
62
+ "typescript": "^5.4.0",
63
+ "vitest": "^4.1.1"
64
+ }
65
+ }