├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── media ├── nofan-colors.gif ├── nofan-colors.png └── screenshot.png ├── package.json ├── source ├── cli.ts ├── nofan.ts ├── prompts │ ├── colors.ts │ ├── config.ts │ ├── login.ts │ ├── switch.ts │ └── trends.ts ├── repl.ts ├── spinner.ts ├── types.ts └── util.ts ├── tsconfig.json └── xo.config.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | tag-version-prefix="" 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/README.md -------------------------------------------------------------------------------- /media/nofan-colors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/media/nofan-colors.gif -------------------------------------------------------------------------------- /media/nofan-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/media/nofan-colors.png -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/package.json -------------------------------------------------------------------------------- /source/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/cli.ts -------------------------------------------------------------------------------- /source/nofan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/nofan.ts -------------------------------------------------------------------------------- /source/prompts/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/prompts/colors.ts -------------------------------------------------------------------------------- /source/prompts/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/prompts/config.ts -------------------------------------------------------------------------------- /source/prompts/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/prompts/login.ts -------------------------------------------------------------------------------- /source/prompts/switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/prompts/switch.ts -------------------------------------------------------------------------------- /source/prompts/trends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/prompts/trends.ts -------------------------------------------------------------------------------- /source/repl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/repl.ts -------------------------------------------------------------------------------- /source/spinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/spinner.ts -------------------------------------------------------------------------------- /source/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/types.ts -------------------------------------------------------------------------------- /source/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/source/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/tsconfig.json -------------------------------------------------------------------------------- /xo.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fanfoujs/nofan/HEAD/xo.config.mjs --------------------------------------------------------------------------------