Files
eSIM-Tools/package.json
Abner 974b6034f3 🚀 Initial commit: eSIM Tools v1.0
 Features:
- Complete Giffgaff eSIM management with OAuth 2.0 PKCE
- Simyo eSIM tools with device switching support
- Netlify deployment ready with CORS proxy
- Responsive UI with Bootstrap 5
- Comprehensive testing suite
- Multi-language support (Chinese)

🔧 Technical:
- Node.js proxy server for CORS handling
- Environment-aware API endpoints
- Static deployment optimization
- Professional documentation

📦 Deployment:
- Netlify configuration included
- GitHub Actions ready
- Custom domain support
- HTTPS enabled
2025-08-01 18:42:54 +08:00

42 lines
998 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "esim-tools",
"version": "1.0.0",
"description": "专为Giffgaff和Simyo用户设计的eSIM管理工具集支持完整的eSIM申请、设备更换和二维码生成流程",
"main": "simyo_proxy_server.js",
"scripts": {
"start": "node simyo_proxy_server.js",
"dev": "nodemon simyo_proxy_server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"esim",
"giffgaff",
"simyo",
"proxy",
"cors",
"api",
"mobile",
"telecom"
],
"author": "Silentely",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Silentely/esim-tools.git"
},
"bugs": {
"url": "https://github.com/Silentely/esim-tools/issues"
},
"homepage": "https://github.com/Silentely/esim-tools#readme",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=14.0.0"
}
}