@delali/sirannon-db 0.2.2 → 0.2.3-next.26

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.
File without changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@delali/sirannon-db",
3
3
  "type": "module",
4
- "version": "0.2.2",
4
+ "version": "0.2.3-next.26",
5
5
  "description": "A production-grade library that turns SQLite databases into a networked data layer with real-time subscriptions.",
6
6
  "author": "Delali (https://sondelali.com)",
7
7
  "license": "Apache-2.0",
@@ -27,6 +27,23 @@
27
27
  "expo-sqlite",
28
28
  "pluggable"
29
29
  ],
30
+ "scripts": {
31
+ "build": "rm -rf dist && tsup",
32
+ "check:bundle": "node scripts/assert-browser-bundle.mjs",
33
+ "check:types": "node scripts/assert-consumer-types.mjs",
34
+ "check:api": "node scripts/assert-api-reports.mjs",
35
+ "api:update": "node scripts/assert-api-reports.mjs --update",
36
+ "test": "vitest run",
37
+ "test:coverage": "vitest run --coverage",
38
+ "test:e2e": "vitest run --config vitest.e2e.config.ts",
39
+ "test:failover": "vitest run --config vitest.failover.config.ts",
40
+ "test:soak": "vitest run --config vitest.soak.config.ts",
41
+ "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
42
+ "lint": "biome check --error-on-warnings .",
43
+ "lint:fix": "biome check --write .",
44
+ "format": "biome format --write .",
45
+ "proto:gen": "grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=src/transport/grpc/generated --ts_proto_opt=forceLong=bigint --ts_proto_opt=esModuleInterop=true --ts_proto_opt=outputServices=grpc-js --ts_proto_opt=env=node -I src/transport/grpc/proto src/transport/grpc/proto/replication.proto"
46
+ },
30
47
  "exports": {
31
48
  ".": {
32
49
  "types": "./dist/core/index.d.ts",
@@ -185,22 +202,5 @@
185
202
  "typescript": "5.9.3",
186
203
  "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.69.0",
187
204
  "vitest": "4.0.18"
188
- },
189
- "scripts": {
190
- "build": "rm -rf dist && tsup",
191
- "check:bundle": "node scripts/assert-browser-bundle.mjs",
192
- "check:types": "node scripts/assert-consumer-types.mjs",
193
- "check:api": "node scripts/assert-api-reports.mjs",
194
- "api:update": "node scripts/assert-api-reports.mjs --update",
195
- "test": "vitest run",
196
- "test:coverage": "vitest run --coverage",
197
- "test:e2e": "vitest run --config vitest.e2e.config.ts",
198
- "test:failover": "vitest run --config vitest.failover.config.ts",
199
- "test:soak": "vitest run --config vitest.soak.config.ts",
200
- "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
201
- "lint": "biome check --error-on-warnings .",
202
- "lint:fix": "biome check --write .",
203
- "format": "biome format --write .",
204
- "proto:gen": "grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=src/transport/grpc/generated --ts_proto_opt=forceLong=bigint --ts_proto_opt=esModuleInterop=true --ts_proto_opt=outputServices=grpc-js --ts_proto_opt=env=node -I src/transport/grpc/proto src/transport/grpc/proto/replication.proto"
205
205
  }
206
- }
206
+ }