├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── module.json └── src ├── errors.js └── socketlib.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | socketlib.lock 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/HEAD/README.md -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/HEAD/module.json -------------------------------------------------------------------------------- /src/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/HEAD/src/errors.js -------------------------------------------------------------------------------- /src/socketlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farling42/foundryvtt-socketlib/HEAD/src/socketlib.js --------------------------------------------------------------------------------