-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "@v3xlabs/redeez",
"version": "1.0.0",
"description": "A simple queue system for redis",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external redis,zod",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c .eslintrc.json --ext .ts ./src"
},
"keywords": [
"redis",
"queue"
],
"author": "Lucemans <[email protected]>",
"license": "LGPL-3.0-or-later",
"peerDependencies": {
"redis": ">= 2.6.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-plugin-v3xlabs": "^1.5.2",
"redis": "^4.5.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"zod": "^3.20.2"
}
}