@lacspace/env 1.0.3 → 1.0.5
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/README.md +18 -2
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -90,8 +90,24 @@ createEnv(schema, Deno.env.toObject());
|
|
|
90
90
|
|
|
91
91
|
## Licensing
|
|
92
92
|
|
|
93
|
-
This package is **free** under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** —
|
|
93
|
+
This package is **free** under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; just keep the notice.
|
|
94
94
|
|
|
95
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
96
|
|
|
97
|
-
|
|
97
|
+
<!-- LACSPACE-DEV-PLATFORM -->
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## The Lacspace Developer Platform
|
|
102
|
+
|
|
103
|
+
`@lacspace/env` is part of **63 zero-dependency, isomorphic TypeScript packages** — one standard library for the modern web. Explore the ecosystem:
|
|
104
|
+
|
|
105
|
+
- 📦 **This package, documented** — https://developer.lacspace.com/packages/env
|
|
106
|
+
- 🗂️ **All 63 packages** — https://developer.lacspace.com/packages
|
|
107
|
+
- 🧭 **Developer handbook** — guides & runnable recipes — https://developer.lacspace.com/handbook
|
|
108
|
+
- 🧪 **Live playground** — run any package in your browser — https://developer.lacspace.com/playground
|
|
109
|
+
- 🖥️ **Finished app templates** — https://templates.lacspace.com
|
|
110
|
+
- 🚀 **Scaffold a full app** — `npm create lacspace-app@latest`
|
|
111
|
+
|
|
112
|
+
Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
|
|
113
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lacspace/env",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
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,11 +35,17 @@
|
|
|
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",
|
|
42
|
-
"homepage": "https://lacspace.com/packages",
|
|
48
|
+
"homepage": "https://developer.lacspace.com/packages/env",
|
|
43
49
|
"repository": {
|
|
44
50
|
"type": "git",
|
|
45
51
|
"url": "git+https://github.com/lacspace/npm-packages.git",
|
|
@@ -50,5 +56,8 @@
|
|
|
50
56
|
},
|
|
51
57
|
"engines": {
|
|
52
58
|
"node": ">=18"
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public"
|
|
53
62
|
}
|
|
54
63
|
}
|