@lacspace/env 1.0.2 → 1.0.4

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +11 -2
package/README.md CHANGED
@@ -88,4 +88,20 @@ createEnv(schema, Deno.env.toObject());
88
88
  | [`@lacspace/otp`](https://www.npmjs.com/package/@lacspace/otp) | TOTP/HOTP 2FA |
89
89
  | [`@lacspace/next`](https://www.npmjs.com/package/@lacspace/next) | Next.js SDK integration |
90
90
 
91
+ ## Licensing
92
+
93
+ This package is **free** under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — MIT-equivalent freedoms. Use it in personal and commercial projects at no cost; just keep the notice.
94
+
95
+ Not every Lacspace package is free. We also offer **Commercial** (paid), **Client-specific**, and **Private** (proprietary) packages under separate terms. See the full **[Lacspace Licence Centre](https://lacspace.com/licenses)**.
96
+
97
+ ---
98
+
99
+ <div align="center">
100
+
101
+ **Part of the Lacspace ecosystem — 35 zero-dependency, isomorphic TypeScript packages.**
102
+
103
+ [All packages ↗](https://lacspace.com/packages) · [npm org ↗](https://www.npmjs.com/org/lacspace) · [Licence Centre ↗](https://lacspace.com/licenses) · [GitHub ↗](https://github.com/lacspace/npm-packages)
104
+
105
+ </div>
106
+
91
107
  <div align="center"><sub>Built with care by <a href="https://lacspace.com">Lacspace</a> · Lacspace Free Licence · <a href="https://github.com/lacspace/npm-packages">source</a></sub></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lacspace/env",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Typed, validated environment variables — declare a schema, validate process.env at boot, get a typed frozen object or a clear fail-fast error. A zero-dependency t3-env / envalid alternative.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -35,7 +35,13 @@
35
35
  "envalid",
36
36
  "config",
37
37
  "type-safe",
38
- "typescript"
38
+ "typescript",
39
+ "environment",
40
+ "config-validation",
41
+ "zod-env",
42
+ "process-env",
43
+ "typed-env",
44
+ "env-schema"
39
45
  ],
40
46
  "author": "Lacspace <contact@lacspace.com>",
41
47
  "license": "SEE LICENSE IN LICENSE",
@@ -50,5 +56,8 @@
50
56
  },
51
57
  "engines": {
52
58
  "node": ">=18"
59
+ },
60
+ "publishConfig": {
61
+ "access": "public"
53
62
  }
54
63
  }