@getdonetoday/gdt 0.1.0-alpha.2 → 0.1.0-alpha.4

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/README.md +20 -6
  2. package/dist/cli.js +765 -761
  3. package/package.json +10 -9
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@getdonetoday/gdt",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0-alpha.4",
4
4
  "description": "GDT - Get Done Today - LLM-Native time management agent",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",
7
7
  "bin": {
8
- "gdt": "./dist/cli.js"
8
+ "getdone": "dist/cli.js"
9
9
  },
10
10
  "files": [
11
11
  "dist/cli.js",
@@ -17,24 +17,26 @@
17
17
  "scripts": {
18
18
  "dev": "tsx src/cli.tsx",
19
19
  "build": "tsc",
20
- "build:bundle": "node scripts/build-bundle.mjs",
21
- "build:npm": "node scripts/build-bundle.mjs",
20
+ "build:bundle": "bun scripts/build-bun.ts",
22
21
  "build:bin": "bun build src/cli.tsx --compile --outfile dist/gdt",
23
22
  "build:bin:linux": "bun build src/cli.tsx --compile --target=bun-linux-x64 --outfile dist/gdt-linux-x64",
24
23
  "build:bin:macos": "bun build src/cli.tsx --compile --target=bun-darwin-x64 --outfile dist/gdt-macos-x64",
25
24
  "build:bin:macos-arm": "bun build src/cli.tsx --compile --target=bun-darwin-arm64 --outfile dist/gdt-macos-arm64",
26
25
  "build:bin:win": "bun build src/cli.tsx --compile --target=bun-windows-x64 --outfile dist/gdt-win-x64.exe",
27
26
  "build:bin:all": "bun run build:bin:linux && bun run build:bin:macos && bun run build:bin:macos-arm && bun run build:bin:win",
28
- "prepublishOnly": "npm run build:bundle",
27
+ "prepublishOnly": "npm run typecheck && npm run build:bundle",
29
28
  "start": "node dist/cli.js",
30
29
  "typecheck": "tsc --noEmit",
31
30
  "lint": "eslint src/**/*.ts src/**/*.tsx",
32
31
  "test": "NODE_OPTIONS='--experimental-vm-modules' jest",
33
32
  "test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
34
33
  "test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
34
+ "test:build": "bun run build:bundle && node dist/cli.js --version",
35
+ "test:package": "npm pack --dry-run",
35
36
  "docs:dev": "vitepress dev docs",
36
- "docs:build": "vitepress build docs",
37
- "docs:preview": "vitepress preview docs"
37
+ "docs:build": "bun scripts/generate-changelog.ts && vitepress build docs",
38
+ "docs:preview": "vitepress preview docs",
39
+ "docs:changelog": "bun scripts/generate-changelog.ts"
38
40
  },
39
41
  "keywords": [
40
42
  "time-management",
@@ -51,7 +53,7 @@
51
53
  "license": "UNLICENSED",
52
54
  "publishConfig": {
53
55
  "registry": "https://registry.npmjs.org",
54
- "access": "restricted"
56
+ "access": "public"
55
57
  },
56
58
  "repository": {
57
59
  "type": "git",
@@ -80,7 +82,6 @@
80
82
  "@types/uuid": "^9.0.0",
81
83
  "@typescript-eslint/eslint-plugin": "^6.0.0",
82
84
  "@typescript-eslint/parser": "^6.0.0",
83
- "esbuild": "^0.27.2",
84
85
  "eslint": "^8.45.0",
85
86
  "ink-testing-library": "^4.0.0",
86
87
  "jest": "^29.6.0",