runtime-config-loader
Version:
Most applications require certain configuration values that can be changed at runtime of the app. The `environment.ts` files in an Angular application technically work for setting configuration values in an app, but those are buildtime configuration value
54 lines • 1.48 kB
JSON
{
"name": "runtime-config-loader",
"version": "5.0.2",
"author": {
"email": "preston.j.lamb@gmail.com",
"name": "Preston Lamb",
"url": "http://www.prestonlamb.com"
},
"homepage": "https://stackblitz.com/edit/runtime-config-loader-demo",
"maintainers": [
"Preston Lamb"
],
"repository": {
"type": "git",
"url": "https://github.com/pjlamb12/runtime-config-loader"
},
"license": "MIT",
"keywords": [
"angular",
"configuration",
"runtime configuration",
"runtime",
"config"
],
"peerDependencies": {
"@angular/common": ">=13.0.0",
"@angular/core": ">=13.0.0",
"@angular/platform-browser-dynamic": ">=13.0.0",
"rxjs": ">=6.6.0"
},
"dependencies": {
"tslib": "^2.3.0"
},
"module": "fesm2015/runtime-config-loader.mjs",
"es2020": "fesm2020/runtime-config-loader.mjs",
"esm2020": "esm2020/runtime-config-loader.mjs",
"fesm2020": "fesm2020/runtime-config-loader.mjs",
"fesm2015": "fesm2015/runtime-config-loader.mjs",
"typings": "index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./index.d.ts",
"esm2020": "./esm2020/runtime-config-loader.mjs",
"es2020": "./fesm2020/runtime-config-loader.mjs",
"es2015": "./fesm2015/runtime-config-loader.mjs",
"node": "./fesm2015/runtime-config-loader.mjs",
"default": "./fesm2020/runtime-config-loader.mjs"
}
},
"sideEffects": false
}