Steal can be used with any library. You will have to use a shim so Steal can properly pass Zepto into steal callbacks:
stealconfig.js
- ...
- shim: {
- 'zepto': {
- exports: 'Zepto'
- }
- }
- ...
And in your code:
- steal('zepto', function($) {
- ...
- })