react-azure-config
Version:
🚀 The Ultimate Multi-App Configuration Library! CRITICAL BUG FIXES: Prefixed environment keys no longer sent to Azure. Complete architectural redesign with bulletproof fallback system. Enterprise-grade Azure integration and monorepo support.
143 lines (142 loc) • 4.22 kB
JSON
{
"name": "react-azure-config",
"version": "0.5.0",
"description": "🚀 The Ultimate Multi-App Configuration Library! CRITICAL BUG FIXES: Prefixed environment keys no longer sent to Azure. Complete architectural redesign with bulletproof fallback system. Enterprise-grade Azure integration and monorepo support.",
"author": "Jovani Samuels <jovani@iamjovani.com>",
"contributors": [
"Jovani Samuels <jovani@iamjovani.com> (Creator and Primary Author)"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server.esm.js",
"require": "./dist/server.cjs.js",
"types": "./dist/server.d.ts"
},
"./client": {
"import": "./dist/client.esm.js",
"require": "./dist/client.cjs.js",
"types": "./dist/client.d.ts"
},
"./client/insights": {
"import": "./dist/client-insights.esm.js",
"require": "./dist/client-insights.cjs.js",
"types": "./dist/client-insights.d.ts"
}
},
"keywords": [
"react",
"runtime-configuration",
"environment-variables",
"docker",
"azure",
"app-configuration",
"key-vault",
"application-insights",
"telemetry",
"monitoring",
"embedded-server",
"typescript",
"build-time-variables",
"config-management",
"devops",
"deployment",
"cloud-native",
"enterprise",
"monorepo",
"multi-app",
"app-scoped",
"microservices",
"bug-fixes",
"critical-fixes",
"bulletproof-fallback",
"key-transformation",
"react-hooks-fix"
],
"homepage": "https://github.com/iamjovani/react-azure-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iamjovani/react-azure-config.git"
},
"bugs": {
"url": "https://github.com/iamjovani/react-azure-config/issues"
},
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"build:prod": "NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --collectCoverageFrom='src/**/*.{ts,tsx}' --coverageReporters='text' --coverageReporters='lcov'",
"lint": "eslint src/**/*.{ts,tsx} --fix",
"lint:check": "eslint src/**/*.{ts,tsx}",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build:prod",
"pack:check": "npm pack --dry-run",
"validate": "npm run lint:check && npm run type-check && npm run test",
"test:bug-fix": "node validate-bug-fixes.js",
"test:comprehensive": "npm run test -- comprehensive-bug-fix-validation.test.ts"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"peerDependencies": {
"react": ">=16.8.0 <20.0.0",
"react-dom": ">=16.8.0 <20.0.0"
},
"peerDependenciesMeta": {
"@microsoft/applicationinsights-web": {
"optional": true
},
"@microsoft/applicationinsights-react-js": {
"optional": true
}
},
"dependencies": {
"@azure/app-configuration": "^1.5.0",
"@azure/identity": "^4.0.1",
"@azure/keyvault-secrets": "^4.7.0",
"cors": "^2.8.5",
"express": "^4.18.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/react": "^18.2.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"jest": "^29.6.0",
"jest-environment-jsdom": "^29.6.0",
"rollup": "^3.26.0",
"supertest": "^7.1.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}