feat: add testing and configuration for providers

This commit is contained in:
himanshu8443
2025-07-11 19:14:51 +05:30
parent c3ee19525f
commit 2d58a4198b
6 changed files with 1066 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
"main": "index.js",
"scripts": {
"test": "node test-providers.js",
"test:provider": "node test-provider.js",
"test:provider:build": "npm run build && node test-provider.js",
"test:interactive": "npm run build && node interactive-test.js",
"test:quick": "npm run build && node quick-test.js",
"test:ui": "npm run test:interactive",
"build": "node build-simple.js",
"dev": "node dev-server.js",
"dev:build": "npm run build && npm run dev",
@@ -30,6 +35,7 @@
"axios": "^1.10.0",
"cheerio": "^1.1.0",
"react-native-aes-crypto": "^3.2.1",
"rimraf": "^6.0.1"
"rimraf": "^6.0.1",
"zod": "^4.0.2"
}
}