Skip to content

Commit

Permalink
🐛 fix(utils): package npm config fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mahabubx7 committed Jan 30, 2024
1 parent 0d754fc commit 6e191ec
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{
"name": "@mx7/tenv",
"version": "0.7.1",
"version": "0.7.2",
"description": "type-safe environment variable parser",
"main": "index.js",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"files": [
"./lib/Env.d.ts",
"./lib/Env.js",
"./lib/Env.mjs",
"./lib/index.d.ts",
"./lib/index.js",
"./lib/index.mjs",
"./package.json"
],
"exports": {
"types": "./lib/Env.d.ts",
"require": "./lib/Env.js",
"import": "./lib/Env.mjs"
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"scripts": {
"test": "jest",
Expand All @@ -32,7 +34,7 @@
"node": ">=18"
},
"repository": {
"url": "https://github.com/mahabub-alam/tenv.git",
"url": "git+https://github.com/mahabub-alam/tenv.git",
"type": "git"
},
"bugs": {
Expand Down

0 comments on commit 6e191ec

Please sign in to comment.