├── .gitignore ├── .nowignore ├── README.md ├── deploy.sh ├── index.js ├── package.json ├── payload.js └── vercel.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tests/ 3 | .vercel 4 | -------------------------------------------------------------------------------- /.nowignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazen160/xless/HEAD/.nowignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazen160/xless/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazen160/xless/HEAD/deploy.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazen160/xless/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazen160/xless/HEAD/package.json -------------------------------------------------------------------------------- /payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazen160/xless/HEAD/payload.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mazen160/xless/HEAD/vercel.json --------------------------------------------------------------------------------