├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── art ├── banner.txt ├── banner1.txt ├── derp.txt ├── glhf.txt ├── help.txt ├── menu.txt └── welcome.txt ├── bin ├── f11 └── targets ├── help ├── cmd │ ├── core.txt │ ├── db.txt │ └── mod.txt └── default.txt ├── package.json ├── src └── index.ts └── tsconfig.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @f11snipe 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/README.md -------------------------------------------------------------------------------- /art/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/art/banner.txt -------------------------------------------------------------------------------- /art/banner1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/art/banner1.txt -------------------------------------------------------------------------------- /art/derp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/art/derp.txt -------------------------------------------------------------------------------- /art/glhf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/art/glhf.txt -------------------------------------------------------------------------------- /art/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/art/help.txt -------------------------------------------------------------------------------- /art/menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/art/menu.txt -------------------------------------------------------------------------------- /art/welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/art/welcome.txt -------------------------------------------------------------------------------- /bin/f11: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../dist/index'); 4 | -------------------------------------------------------------------------------- /bin/targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/bin/targets -------------------------------------------------------------------------------- /help/cmd/core.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/help/cmd/core.txt -------------------------------------------------------------------------------- /help/cmd/db.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help/cmd/mod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/help/cmd/mod.txt -------------------------------------------------------------------------------- /help/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/help/default.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f11snipe/f11/HEAD/tsconfig.json --------------------------------------------------------------------------------