@gravito/stream 1.0.0-beta.1 → 1.0.0-beta.3
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/README.md +86 -2
- package/dist/index.cjs +1357 -73
- package/dist/index.d.cts +689 -7
- package/dist/index.d.ts +689 -7
- package/dist/index.js +1359 -73
- package/package.json +9 -5
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravito/stream",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"description": "Lightweight, high-performance queue system for Gravito framework. Supports multiple brokers (Database, Redis, Kafka, SQS) with zero runtime overhead.",
|
|
8
|
-
"module": "./dist/index.
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
9
|
"main": "./dist/index.cjs",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
|
-
"import": "./dist/index.
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
16
|
"require": "./dist/index.cjs"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
"scripts": {
|
|
25
25
|
"build": "bun run build.ts",
|
|
26
26
|
"test": "bun test",
|
|
27
|
-
"typecheck": "tsc --noEmit"
|
|
27
|
+
"typecheck": "bun tsc -p tsconfig.json --noEmit --skipLibCheck",
|
|
28
|
+
"test:coverage": "bun test --coverage --coverage-threshold=80",
|
|
29
|
+
"test:ci": "bun test --coverage --coverage-threshold=80"
|
|
28
30
|
},
|
|
29
31
|
"keywords": [
|
|
30
32
|
"gravito",
|
|
@@ -40,7 +42,9 @@
|
|
|
40
42
|
"license": "MIT",
|
|
41
43
|
"dependencies": {
|
|
42
44
|
"@aws-sdk/client-sqs": "^3.955.0",
|
|
43
|
-
"gravito
|
|
45
|
+
"@gravito/atlas": "workspace:*",
|
|
46
|
+
"@gravito/core": "workspace:*",
|
|
47
|
+
"cron-parser": "^5.4.0"
|
|
44
48
|
},
|
|
45
49
|
"devDependencies": {
|
|
46
50
|
"bun-types": "latest",
|