applesauce-sqlite 0.0.0-next-20250930093922 → 4.0.0

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -64,7 +64,7 @@ const sub = relay.subscribe([{ kinds: [0, 1] }], {
64
64
  });
65
65
 
66
66
  // Use models as normal - they'll work with persisted data
67
- const profile = eventStore.model(ProfileModel, "npub...");
67
+ const profile = eventStore.model(ProfileModel, "pubkey...");
68
68
  profile.subscribe((parsed) => {
69
69
  console.log("Profile loaded from database:", parsed);
70
70
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "applesauce-sqlite",
3
- "version": "0.0.0-next-20250930093922",
3
+ "version": "4.0.0",
4
4
  "description": "sqlite event databases for applesauce",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -82,7 +82,7 @@
82
82
  }
83
83
  },
84
84
  "dependencies": {
85
- "applesauce-core": "0.0.0-next-20250930093922"
85
+ "applesauce-core": "^4.0.0"
86
86
  },
87
87
  "optionalDependencies": {
88
88
  "@libsql/client": "^0.15.15",
@@ -92,7 +92,7 @@
92
92
  "@hirez_io/observer-spy": "^2.2.0",
93
93
  "@types/better-sqlite3": "^7.6.13",
94
94
  "@types/ws": "^8.5.13",
95
- "applesauce-signers": "0.0.0-next-20250930093922",
95
+ "applesauce-signers": "^4.0.0",
96
96
  "rimraf": "^6.0.1",
97
97
  "typescript": "^5.7.3",
98
98
  "vitest": "^3.2.4",