@tanagram/lore 0.1.213 → 0.1.215

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 +9 -0
  2. package/dist/index.js +222 -222
  3. package/package.json +7 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanagram/lore",
3
- "version": "0.1.213",
3
+ "version": "0.1.215",
4
4
  "description": "Lore CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,19 +21,21 @@
21
21
  "@biomejs/biome": "^1.9.4",
22
22
  "@sentry/esbuild-plugin": "^5.2.1",
23
23
  "@ts-rest/core": "3.53.0-rc.1",
24
+ "@ts-rest/fastify": "3.53.0-rc.1",
24
25
  "@types/node": "^22.16.5",
25
26
  "@types/react": "^19.0.0",
26
27
  "drizzle-orm": "^0.45.2",
27
28
  "esbuild": "^0.28.1",
29
+ "fastify": "^5.8.5",
28
30
  "ink-testing-library": "^4.0.0",
29
31
  "smol-toml": "^1.6.1",
30
32
  "tsx": "^4.22.4",
31
33
  "typescript": "^5.9.3",
32
34
  "@lore/contracts": "0.1.0",
35
+ "@lore/db": "0.1.0",
33
36
  "@lore/identity-store": "0.1.0",
34
- "@lore/transcript-locate": "0.1.0",
35
37
  "@lore/transcripts": "0.1.0",
36
- "@lore/db": "0.1.0"
38
+ "@lore/transcript-locate": "0.1.0"
37
39
  },
38
40
  "dependencies": {
39
41
  "@sentry/node": "^10.47.0",
@@ -57,6 +59,7 @@
57
59
  "lint": "biome check src",
58
60
  "typecheck": "tsc --noEmit",
59
61
  "test": "node scripts/runTests.mjs",
60
- "test:skill-sync:e2e": "env NODE_ENV=test S3_BUCKET=test AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test tsx --test --experimental-test-isolation=none --import ../api/src/test/setup.ts src/skills/skillSync.e2e.ts"
62
+ "test:skill-sync:e2e": "env NODE_ENV=test S3_BUCKET=test AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test tsx --test --experimental-test-isolation=none --import ../api/src/test/setup.ts src/skills/skillSync.e2e.ts",
63
+ "test:skill-sync-daemon:e2e": "env NODE_ENV=test S3_BUCKET=test AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test tsx --test --experimental-test-isolation=none --import ../api/src/test/setup.ts src/skills/testing/skillSyncDaemon.e2e.ts"
61
64
  }
62
65
  }