@ceschiatti/redistail 0.0.3 → 0.0.4
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 +680 -0
- package/dist/cli/redistail.exe +0 -0
- package/dist/cli/redistail.js +5 -5
- package/package.json +38 -38
- package/src/cli/version-generated.ts +2 -2
package/package.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ceschiatti/redistail",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "CLI tool for monitoring Redis streams and PubSub",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"redistail": "./dist/cli/redistail-launcher.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist",
|
|
11
|
-
"src",
|
|
12
|
-
"README.md"
|
|
13
|
-
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "node build-cli.js",
|
|
16
|
-
"typecheck": "bun tsc --noEmit",
|
|
17
|
-
"redistail": "bun run src/cli/redistail.ts",
|
|
18
|
-
"test": "vitest run --passWithNoTests",
|
|
19
|
-
"format": "biome format --write ./src",
|
|
20
|
-
"lint": "biome lint ."
|
|
21
|
-
},
|
|
22
|
-
"dependencies": {
|
|
23
|
-
"@effect/experimental": "^0.58.0",
|
|
24
|
-
"@effect/platform-bun": "^0.87.0",
|
|
25
|
-
"effect
|
|
26
|
-
"effect": "^
|
|
27
|
-
},
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@biomejs/biome": "^2.3.11",
|
|
30
|
-
"@effect/language-service": "^0.64.1",
|
|
31
|
-
"@effect/vitest": "^0.27.0",
|
|
32
|
-
"@types/bun": "latest",
|
|
33
|
-
"@types/node": "^25.0.3",
|
|
34
|
-
"fast-check": "^4.5.3",
|
|
35
|
-
"typescript": "^5",
|
|
36
|
-
"vitest": "^4.0.16"
|
|
37
|
-
}
|
|
38
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ceschiatti/redistail",
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"description": "CLI tool for monitoring Redis streams and PubSub",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"redistail": "./dist/cli/redistail-launcher.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"src",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "node build-cli.js",
|
|
16
|
+
"typecheck": "bun tsc --noEmit",
|
|
17
|
+
"redistail": "bun run src/cli/redistail.ts",
|
|
18
|
+
"test": "vitest run --passWithNoTests",
|
|
19
|
+
"format": "biome format --write ./src",
|
|
20
|
+
"lint": "biome lint ."
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@effect/experimental": "^0.58.0",
|
|
24
|
+
"@effect/platform-bun": "^0.87.0",
|
|
25
|
+
"effect": "3.19.14",
|
|
26
|
+
"effect-redis": "^0.0.21"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@biomejs/biome": "^2.3.11",
|
|
30
|
+
"@effect/language-service": "^0.64.1",
|
|
31
|
+
"@effect/vitest": "^0.27.0",
|
|
32
|
+
"@types/bun": "latest",
|
|
33
|
+
"@types/node": "^25.0.3",
|
|
34
|
+
"fast-check": "^4.5.3",
|
|
35
|
+
"typescript": "^5.9.3",
|
|
36
|
+
"vitest": "^4.0.16"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
// These values are replaced at build time by build-cli.js
|
|
9
|
-
export const BUILD_COMMIT: string = '
|
|
10
|
-
export const BUILD_VERSION: string = '0.0.
|
|
9
|
+
export const BUILD_COMMIT: string = 'd18b194';
|
|
10
|
+
export const BUILD_VERSION: string = '0.0.4';
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* Get formatted version information for display
|