├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── neocities.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.cjs ├── index.cjs.map └── meta.json ├── eslint.config.js ├── index.js ├── package.json ├── static ├── favicon.ico └── logo.png ├── test.js └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/neocities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/.github/workflows/neocities.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/dist/index.cjs -------------------------------------------------------------------------------- /dist/index.cjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/dist/index.cjs.map -------------------------------------------------------------------------------- /dist/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/dist/meta.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/package.json -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/static/logo.png -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcomnes/deploy-to-neocities/HEAD/tsconfig.json --------------------------------------------------------------------------------