3.0.0 • Published 10 days ago

@owlprotocol/envvars v3.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 days ago

Typescript Starter

Typescript starter project.

package.json

Exports are defined as below

{
  "type": "module",
  "main": "./lib/cjs/index.cjs",
  "module": "./lib/esm/index.mjs",
  "types": "./lib/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/types/index.d.ts",
      "require": "./lib/cjs/index.js",
      "import": "./lib/esm/index.js"
    }
}
  • type: "module": By default we use ESM Modules
  • lib/esm: ESM built output
  • lib/cjs: CJS build output
  • lib/types: Typescript types
  • No minified bundles are provided as these are left to frameworks to bundle.