-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 KB
/
package.json
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
{
"name": "zod-redis",
"version": "0.1.3",
"author": "Nicolas Keil <nkeil.dev@gmail.com>",
"description": "Typesafe Redis storage made easy",
"repository": {
"type": "git",
"url": "https://github.com/nkeil/zod-redis"
},
"keywords": [
"redis",
"zod",
"typescript"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.12.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rimraf dist && tsc",
"format": "prettier --write ./**/*.ts *.md --ignore-unknown --no-error-on-unmatched-pattern",
"type-check": "tsc --noEmit",
"lint": "eslint . --ignore-path .gitignore",
"test": "pnpm -F tests run test"
},
"peerDependencies": {
"zod": "^3.22.4"
},
"dependencies": {
"ioredis": "^5.3.2",
"superjson": "^1.13.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/eslint": "^8.44.3",
"@types/node": "^20.8.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-unicorn": "^49.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}