|
28 | 28 | "bun": "./src/api/openapi-utils.ts", |
29 | 29 | "types": "./dist/api/openapi-utils.d.ts", |
30 | 30 | "import": "./dist/api/openapi-utils.js" |
| 31 | + }, |
| 32 | + "./progress": { |
| 33 | + "bun": "./src/lib/progress/index.ts", |
| 34 | + "types": "./dist/lib/progress/index.d.ts", |
| 35 | + "import": "./dist/lib/progress/index.js" |
31 | 36 | } |
32 | 37 | }, |
33 | 38 | "scripts": { |
34 | | - "build": "tsc", |
| 39 | + "build": "tsc && cp -r src/__generated__ dist/__generated__", |
35 | 40 | "x:watch": "sh -c 'if command -v bun > /dev/null 2>&1; then bun --watch \"$@\"; else tsx --watch --conditions bun \"$@\"; fi' --", |
36 | | - "dev": "LOG_LEVEL=${LOG_LEVEL:-trace} LOG_PRETTY=${LOG_PRETTY:-true} DANGEROUSLY_VERBOSE_LOGGING=true pnpm x:watch src/bin/serve.ts", |
| 41 | + "dev": "LOG_LEVEL=${LOG_LEVEL:-trace} pnpm x:watch src/bin/serve.ts", |
37 | 42 | "test": "vitest run", |
38 | 43 | "generate:types": "openapi-typescript src/__generated__/openapi.json -o src/__generated__/openapi.d.ts" |
39 | 44 | }, |
40 | 45 | "files": [ |
41 | | - "dist", |
42 | | - "src" |
| 46 | + "src", |
| 47 | + "dist" |
43 | 48 | ], |
44 | 49 | "dependencies": { |
45 | 50 | "@hono/node-server": "^1", |
46 | 51 | "@scalar/hono-api-reference": "^0.6", |
47 | 52 | "@stripe/sync-destination-google-sheets": "workspace:*", |
48 | 53 | "@stripe/sync-destination-postgres": "workspace:*", |
49 | 54 | "@stripe/sync-hono-zod-openapi": "workspace:*", |
50 | | - "@stripe/sync-integration-supabase": "workspace:*", |
| 55 | + "@stripe/sync-logger": "workspace:*", |
51 | 56 | "@stripe/sync-protocol": "workspace:*", |
52 | 57 | "@stripe/sync-source-stripe": "workspace:*", |
53 | | - "@stripe/sync-state-postgres": "workspace:*", |
54 | 58 | "@stripe/sync-ts-cli": "workspace:*", |
55 | 59 | "@stripe/sync-util-postgres": "workspace:*", |
56 | 60 | "citty": "^0.1.6", |
57 | 61 | "dotenv": "^16.4.7", |
58 | 62 | "googleapis": "^148.0.0", |
59 | 63 | "hono": "^4", |
| 64 | + "ink": "^7.0.1", |
60 | 65 | "openapi-fetch": "^0.17.0", |
61 | 66 | "pg": "^8.16.3", |
62 | | - "pino": "^10", |
63 | | - "pino-pretty": "^13", |
| 67 | + "react": "19.2.5", |
64 | 68 | "ws": "^8.18.0", |
65 | 69 | "zod": "^4.3.6" |
66 | 70 | }, |
67 | 71 | "devDependencies": { |
68 | 72 | "@hyperjump/json-schema": "^1.17.5", |
69 | 73 | "@types/node": "^24.10.1", |
70 | 74 | "@types/pg": "^8.15.4", |
| 75 | + "@types/react": "19.2.14", |
71 | 76 | "openapi-typescript": "^7.13.0", |
72 | 77 | "vitest": "^3.2.4" |
73 | 78 | }, |
|
0 commit comments