-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@vortexdd/effect-redis-bun",
"version": "3.0.0",
"description": "Effect Redis service and KeyValueStore integration using Bun's native Redis client",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"EXAMPLES.md",
"LICENSE"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm --minify --sourcemap=external --packages=external && bun run build:types",
"build:types": "tsc",
"check-types": "tsc --noEmit",
"test": "bun test",
"test:integration": "bun test src/index.integration.test.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "bun run build && bun run check-types && bun run test",
"prepare": "effect-tsgo patch"
},
"keywords": [
"effect",
"bun",
"redis",
"keyvaluestore",
"effect-ts",
"valkey"
],
"author": "vortexdd",
"license": "MIT",
"repository": "github:Vortex-Dimension-Digital/effect-redis-bun",
"bugs": {
"url": "https://github.com/Vortex-Dimension-Digital/effect-redis-bun/issues"
},
"homepage": "https://github.com/Vortex-Dimension-Digital/effect-redis-bun#readme",
"peerDependencies": {
"effect": ">=3.1.2 <4",
"@effect/platform": ">=0.52.3 <1"
},
"peerDependenciesMeta": {
"@effect/platform": {
"optional": false
},
"effect": {
"optional": false
}
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@effect/language-service": "0.87.0",
"@effect/platform": "0.97.0",
"@types/bun": "1.3.13",
"effect": "3.22.0",
"typescript": "7.0.2",
"@effect/tsgo": "0.21.0"
},
"engines": {
"bun": ">=1.2.22"
}
}