Hey! I was experimenting with moving site data in and out of SQLite with this plugin. The import step in was pretty straightforward using the following script:
#!/bin/bash
# Export WordPress database to a SQL file
wp db export wordpress.sql
# Convert MySQL to SQLite compatible SQL using https://github.com/dumblob/mysql2sqlite
mysql2sqlite.sh wordpress.sql > wordpress.sqlite