botbuilder-js/libraries/botframework-config
Jhonatan Sandoval Velasco cd6cf6f9f8
bump: Update ESLint packages and migrate to eslint.config.cjs files (#4776)
* update eslint configurations

* show only eslint warnings

* add dependencies

* removed unused imports and add only warn to every library

* move eslint-plugin-only-warn to the right place

* fix import errors

* remove files config

* Update eslint.config

* Remove blank line and spaces

---------

Co-authored-by: Joel Mut <joel.mut@southworks.com>
Co-authored-by: CeciliaAvila <cecilia.avila@southworks.com>
2024-10-29 09:04:25 -05:00
..
etc fix: [#4204] Fix remaining eslint warnings - botframework-config (#4234) 2022-07-13 13:22:57 -05:00
src bump: [#4550] Add Node 18 and 20 support (#4726) 2024-08-26 09:45:04 -05:00
tests bump: [#4550] Add Node 18 and 20 support (#4726) 2024-08-26 09:45:04 -05:00
.gitignore remove files from .gitignore rule 2018-08-24 17:51:28 -07:00
LICENSE Add LICENCE to libraries (#4169) 2022-03-21 17:43:03 -04:00
api-extractor.json chore: add test:compat to CI tests (#3691) 2021-05-19 15:21:39 -07:00
eslint.config.cjs bump: Update ESLint packages and migrate to eslint.config.cjs files (#4776) 2024-10-29 09:04:25 -05:00
package.json bump: Update ESLint packages and migrate to eslint.config.cjs files (#4776) 2024-10-29 09:04:25 -05:00
readme.md add botframework-config package and unit tests 2018-08-15 14:14:26 -07:00
tsconfig.json monorepo: ci, lint, package.json overhaul (#3058) 2020-11-12 11:58:42 -08:00

readme.md

Bot Framework Bot Configuration library

This library provides the ability to read/write Bot Framework .bot files.

Usage

import * as bfc from 'botframework-config';

// load and decrypt .bot file
let configuration = bfc.BotConfiguration.load('my.bot', mysecret);
...

// save .bot file encrypted with secret
configuration.save('my.bot', mysecret);