I’m trying to make a plugin to help Lancer RPG game masters to plan out sessions by loading the .lcp files (a type of zip with json files containing game data) to be used in notes.
To do this the plugin creates a .db file inside the plugin folder. Then the idea was to use Prisma to define the model based on the json data of the lcps and to use a custom modal to import the files and use Prisma to handle the database management.
The issue is that Prisma can’t properly run in Obsidian’s electron environment. How can I solve this issue, following the plugin creation guidelines?