├── .github └── workflows │ ├── cla.yml │ └── stale-issues.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── contributors.json └── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── SECURITY.md /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyproto/contributors/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyproto/contributors/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyproto/contributors/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyproto/contributors/HEAD/README.md -------------------------------------------------------------------------------- /contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyproto/contributors/HEAD/contributors.json -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyproto/contributors/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyproto/contributors/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyproto/contributors/HEAD/docs/SECURITY.md --------------------------------------------------------------------------------