├── .gitignore ├── LICENSE ├── README.md ├── demo ├── index.html ├── qr-code-example.png └── style.css ├── nimiq_logo_rgb_horizontal.svg ├── package.json ├── src └── qr-creator.js ├── test ├── index.html ├── qr-code.larsjung.js ├── qr-code.org.js └── style.css ├── types └── qr-creator.d.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .idea 4 | .DS_Store 5 | tmp 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/qr-code-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/demo/qr-code-example.png -------------------------------------------------------------------------------- /demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/demo/style.css -------------------------------------------------------------------------------- /nimiq_logo_rgb_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/nimiq_logo_rgb_horizontal.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/package.json -------------------------------------------------------------------------------- /src/qr-creator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/src/qr-creator.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/test/index.html -------------------------------------------------------------------------------- /test/qr-code.larsjung.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/test/qr-code.larsjung.js -------------------------------------------------------------------------------- /test/qr-code.org.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/test/qr-code.org.js -------------------------------------------------------------------------------- /test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/test/style.css -------------------------------------------------------------------------------- /types/qr-creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/types/qr-creator.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimiq/qr-creator/HEAD/yarn.lock --------------------------------------------------------------------------------