├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── README.md ├── dist ├── bottomify.d.ts ├── bottomify.js ├── bottomify.min.js ├── cli.d.ts └── cli.js ├── package.json ├── src ├── bottomify.ts ├── cli.ts └── deno.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/README.md -------------------------------------------------------------------------------- /dist/bottomify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/dist/bottomify.d.ts -------------------------------------------------------------------------------- /dist/bottomify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/dist/bottomify.js -------------------------------------------------------------------------------- /dist/bottomify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/dist/bottomify.min.js -------------------------------------------------------------------------------- /dist/cli.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | -------------------------------------------------------------------------------- /dist/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/dist/cli.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/package.json -------------------------------------------------------------------------------- /src/bottomify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/src/bottomify.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/src/deno.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottom-software-foundation/bottom-js/HEAD/yarn.lock --------------------------------------------------------------------------------