├── .github └── workflows │ ├── checks.yaml │ └── release.yaml ├── .gitignore ├── .node-version ├── .prettierignore ├── LICENSE ├── README.md ├── package.json ├── prettier.config.mjs ├── src ├── __snapshots__ │ └── index.test.ts.snap ├── index.test.ts └── index.ts └── tsconfig.json /.github/workflows/checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/.github/workflows/checks.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .DS_Store 4 | dist 5 | *.log 6 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 24 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /src/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/src/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akiver/csgo-sharecode/HEAD/tsconfig.json --------------------------------------------------------------------------------