@getdonetoday/gdt 0.1.0-alpha.9 → 0.2.0-beta.2

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 (3) hide show
  1. package/dist/CHANGELOG.md +163 -0
  2. package/dist/cli.js +1721 -769
  3. package/package.json +17 -4
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@getdonetoday/gdt",
3
- "version": "0.1.0-alpha.9",
3
+ "version": "0.2.0-beta.2",
4
4
  "description": "GDT - Get Done Today - LLM-Native time management agent",
5
- "releaseNotes": "",
5
+ "releaseNotes": "Add recurring tasks, relative dates, and eval improvements (#79)",
6
6
  "type": "module",
7
7
  "main": "dist/cli.js",
8
8
  "bin": {
@@ -18,8 +18,11 @@
18
18
  },
19
19
  "scripts": {
20
20
  "dev": "tsx src/cli.tsx",
21
+ "dev:web": "cd web && bun run dev",
22
+ "dev:serve": "concurrently -n server,web -c blue,green \"tsx src/cli.tsx serve\" \"cd web && bun run dev\"",
21
23
  "build": "tsc",
22
24
  "build:bundle": "bun scripts/build-bun.ts",
25
+ "build:web": "cd web && bun run build",
23
26
  "build:bin": "bun build src/cli.tsx --compile --outfile dist/gdt",
24
27
  "build:bin:linux": "bun build src/cli.tsx --compile --target=bun-linux-x64 --outfile dist/gdt-linux-x64",
25
28
  "build:bin:macos": "bun build src/cli.tsx --compile --target=bun-darwin-x64 --outfile dist/gdt-macos-x64",
@@ -33,6 +36,8 @@
33
36
  "test": "bun test",
34
37
  "test:watch": "bun test --watch",
35
38
  "test:coverage": "bun test --coverage",
39
+ "eval": "tsx evals/cli.ts",
40
+ "eval:verbose": "tsx evals/cli.ts --verbose",
36
41
  "test:build": "bun run build:bundle && node dist/cli.js --version",
37
42
  "test:package": "npm pack --dry-run",
38
43
  "docs:dev": "vitepress dev docs",
@@ -69,24 +74,32 @@
69
74
  "url": "https://github.com/getdonetoday/gdt/issues"
70
75
  },
71
76
  "dependencies": {
72
- "@anthropic-ai/claude-agent-sdk": "^0.2.12",
73
77
  "@anthropic-ai/sdk": "^0.71.2",
78
+ "@fastify/cors": "^10.0.0",
79
+ "@fastify/rate-limit": "^10.3.0",
80
+ "@fastify/static": "^8.0.0",
81
+ "@fastify/websocket": "^11.0.0",
74
82
  "dotenv": "^16.0.0",
83
+ "fastify": "^5.0.0",
75
84
  "ink": "^5.1.0",
76
85
  "ink-spinner": "^5.0.0",
77
86
  "ink-text-input": "^6.0.0",
78
87
  "meow": "^13.2.0",
88
+ "open": "^11.0.0",
79
89
  "react": "^18.2.0",
80
90
  "uuid": "^9.0.0",
91
+ "ws": "^8.0.0",
81
92
  "zod": "^4.3.5"
82
93
  },
83
94
  "devDependencies": {
84
95
  "@types/bun": "latest",
85
- "@types/node": "^20.0.0",
96
+ "@types/node": "^25.0.10",
86
97
  "@types/react": "^18.2.0",
87
98
  "@types/uuid": "^9.0.0",
99
+ "@types/ws": "^8.0.0",
88
100
  "@typescript-eslint/eslint-plugin": "^6.0.0",
89
101
  "@typescript-eslint/parser": "^6.0.0",
102
+ "concurrently": "^9.2.1",
90
103
  "eslint": "^8.45.0",
91
104
  "ink-testing-library": "^4.0.0",
92
105
  "react-devtools-core": "^7.0.1",