-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.5 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
{
"author": "Vedant Chainani <vedant@envoy1084.xyz>",
"bugs": {
"url": "https://github.com/envoy1084/effect-redis/issues"
},
"dependencies": {
"@effect/platform": "^0.94.2",
"effect": "^3.19.15",
"redis": "^5.10.0"
},
"description": "Effect bindings for Redis",
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@effect/platform-node": "^0.104.1",
"@effect/vitest": "^0.27.0",
"@types/node": "^25.2.0",
"lefthook": "^2.0.16",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/envoy1084/effect-redis#readme",
"keywords": [
"redis",
"effect",
"effect-ts",
"fp",
"functional",
"wrapper",
"database",
"cache"
],
"license": "MIT",
"name": "@envoy1084/effect-redis",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/envoy1084/effect-redis.git"
},
"scripts": {
"build": "tsdown",
"dev": "vitest",
"format": "pnpm exec biome format --write",
"lint": "pnpm exec biome check --write",
"prepare": "lefthook install",
"release": "pnpm build && changeset publish",
"test": "vitest run"
},
"type": "module",
"version": "0.0.2"
}