@@ -0,0 +1,5 @@
+.qshell_home/
+bin/
+dist/
+node_modules/
+package-lock.json
@@ -1,6 +1,6 @@
{
"name": "fmode-brightdata-api",
- "version": "1.0.0",
+ "version": "0.0.1",
"description": "Pinterest API Module using Bright Data Web Scraper API for Node.js",
"main": "dist/mod.js",
"types": "dist/mod.d.ts",
@@ -1 +1,6 @@
+export * from './types.ts';
+export * from './api.ts';
export * from './routes.ts';
+
+// Alias export for compatibility with api/routes.ts
+export { createPinterestRouter as default } from './routes.ts';