If your version of sqlite has the JSON1 extension compiled in:
SELECT *FROM my_tableWHERE EXISTS (SELECT 1 FROM json_each(tags) WHERE value = 'love')ORDER BY id;
will return
id tags -- -------------------1 ["love","sadness"] 2 ["love"]