@osmn-byhn/envguard 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osmn-byhn/envguard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"homepage": "https://envguard.osmanbeyhan.com/",
|
|
4
5
|
"description": "Type-safe environment variable validation and management for Node.js",
|
|
5
6
|
"main": "dist/index.cjs",
|
|
6
|
-
"module": "dist/index.
|
|
7
|
+
"module": "dist/index.mjs",
|
|
7
8
|
"types": "dist/index.d.ts",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
11
|
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
12
13
|
"require": "./dist/index.cjs"
|
|
13
14
|
}
|
|
14
15
|
},
|
|
@@ -35,8 +36,8 @@
|
|
|
35
36
|
"url": "https://github.com/osmn-byhn/envGuard"
|
|
36
37
|
},
|
|
37
38
|
"scripts": {
|
|
38
|
-
"build": "tsup
|
|
39
|
-
"dev": "tsup
|
|
39
|
+
"build": "tsup",
|
|
40
|
+
"dev": "tsup --watch",
|
|
40
41
|
"lint": "eslint src --ext .ts",
|
|
41
42
|
"example": "tsx example.ts",
|
|
42
43
|
"prepublishOnly": "npm run build"
|
|
File without changes
|