You can get all the data related to triggers using the sqlite_master table (this includes the ddl code to create them). If you do not want all the data to just leave some of the columns in your query.
For all data:
select * from sqlite_master where type = 'trigger';
For a list of names only:
select name from sqlite_master where type = 'trigger';
source share