Skip to content

Commit

Permalink
Update tsconfig & package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Jan 7, 2023
1 parent a1f10b5 commit 6a54fbc
Show file tree
Hide file tree
Showing 4 changed files with 2,458 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.env
node_modules
node_modules/
npm-debug.log
dist/
17 changes: 15 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@
"name": "redeez",
"version": "1.0.0",
"description": "A simple queue system for redis",
"main": "index.js",
"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",
Expand All @@ -23,7 +35,8 @@
"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"
}
}
}
Loading

0 comments on commit 6a54fbc

Please sign in to comment.