@delta-base/core 1.2.10 → 1.3.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.
- package/dist/index.d.ts +4150 -1334
- package/dist/index.js +1 -1
- package/package.json +16 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delta-base/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Deltabase Core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -22,12 +22,14 @@
|
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@hono/zod-openapi": "^
|
|
26
|
-
"@scalar/hono-api-reference": "
|
|
27
|
-
"hono": "^4.
|
|
25
|
+
"@hono/zod-openapi": "^1.1.3",
|
|
26
|
+
"@scalar/hono-api-reference": "0.9.9",
|
|
27
|
+
"hono": "^4.10.5",
|
|
28
28
|
"nanoid": "^5.0.9",
|
|
29
|
-
"zod": "^
|
|
30
|
-
"@delta-base/
|
|
29
|
+
"zod": "^4.1.12",
|
|
30
|
+
"@delta-base/auth": "0.1.0",
|
|
31
|
+
"@delta-base/api-keys": "0.1.0",
|
|
32
|
+
"@delta-base/toolkit": "0.0.4"
|
|
31
33
|
},
|
|
32
34
|
"devDependencies": {
|
|
33
35
|
"@cloudflare/vitest-pool-workers": "^0.8.37",
|
|
@@ -36,7 +38,8 @@
|
|
|
36
38
|
"tsup": "^8.3.6",
|
|
37
39
|
"typescript": "^5.5.2",
|
|
38
40
|
"vitest": "~3.1.0",
|
|
39
|
-
"wrangler": "^4.
|
|
41
|
+
"wrangler": "^4.48.0",
|
|
42
|
+
"artillery": "^2.0.10"
|
|
40
43
|
},
|
|
41
44
|
"scripts": {
|
|
42
45
|
"obfuscate": "node scripts/obfuscate.js",
|
|
@@ -45,7 +48,11 @@
|
|
|
45
48
|
"cf-typegen": "wrangler types",
|
|
46
49
|
"test": "vitest run",
|
|
47
50
|
"test:coverage": "vitest --coverage",
|
|
48
|
-
"dev": "wrangler dev",
|
|
49
|
-
"
|
|
51
|
+
"dev": "wrangler dev --port 8788 --env development",
|
|
52
|
+
"typecheck": "pnpm run cf-typegen && tsc",
|
|
53
|
+
"bench:setup": "node scripts/benchmarks/setup.cjs",
|
|
54
|
+
"bench:append": "mkdir -p reports && pnpm -w dlx artillery run --dotenv scripts/benchmarks/.env.last-run scripts/benchmarks/append-many.yml -o reports/append-$(date +%s).json && pnpm -w dlx artillery report $(ls -t reports/append-*.json | head -n1) -o reports/append-latest.html",
|
|
55
|
+
"bench:mixed": "mkdir -p reports && pnpm -w dlx artillery run --dotenv scripts/benchmarks/.env.last-run scripts/benchmarks/mixed.yml -o reports/mixed-$(date +%s).json && pnpm -w dlx artillery report $(ls -t reports/mixed-*.json | head -n1) -o reports/mixed-latest.html",
|
|
56
|
+
"bench:webhook": "mkdir -p reports && pnpm -w dlx artillery run --dotenv scripts/benchmarks/.env.last-run scripts/benchmarks/webhook.yml -o reports/webhook-$(date +%s).json && pnpm -w dlx artillery report $(ls -t reports/webhook-*.json | head -n1) -o reports/webhook-latest.html"
|
|
50
57
|
}
|
|
51
58
|
}
|