├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── main.js ├── package.json └── readme.md /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezzcodeezzlife/fileGPT/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezzcodeezzlife/fileGPT/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezzcodeezzlife/fileGPT/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezzcodeezzlife/fileGPT/HEAD/readme.md --------------------------------------------------------------------------------