@flagvault/sdk
Version:
Lightweight JavaScript SDK for FlagVault with intelligent caching, graceful error handling, and built-in React hooks for seamless feature flag integration.
76 lines • 1.86 kB
JSON
{
"name": "@flagvault/sdk",
"version": "1.2.0",
"description": "Lightweight JavaScript SDK for FlagVault with intelligent caching, graceful error handling, and built-in React hooks for seamless feature flag integration.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/ tests/ examples/",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"keywords": [
"feature-flag",
"feature-flags",
"feature-toggle",
"feature-toggles",
"sdk",
"javascript",
"typescript",
"react",
"react-hooks",
"flagvault",
"remote-config",
"a-b-testing",
"experimentation",
"graceful-degradation",
"caching",
"performance"
],
"repository": {
"type": "git",
"url": "https://github.com/flagvault/sdk-js.git"
},
"author": "FlagVault <accounts@flagvault.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flagvault/sdk-js/issues"
},
"homepage": "https://github.com/flagvault/sdk-js#readme",
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/jest": "^29.5.14",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"publishConfig": {
"access": "public"
}
}