@varia-bly/variably-sdk
Version:
Official JavaScript/TypeScript SDK for Variably feature flags, experimentation, and real-time dynamic configurations
65 lines (64 loc) • 1.79 kB
JSON
{
"name": "@varia-bly/variably-sdk",
"version": "2.0.1",
"description": "Official JavaScript/TypeScript SDK for Variably feature flags, experimentation, and real-time dynamic configurations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "RUN_INTEGRATION_TESTS=true jest --config jest.integration.config.js",
"test:production": "RUN_PRODUCTION_TESTS=true jest tests/production.test.ts --testTimeout=15000",
"test:all": "npm run test && npm run test:integration",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build",
"examples": "ts-node examples/dynamic-config-example.ts"
},
"keywords": [
"feature-flags",
"a/b-testing",
"experimentation",
"variably",
"feature-toggles",
"dynamic-configuration",
"real-time",
"websocket",
"configuration-management",
"remote-config"
],
"author": "Variably Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/variably/variably-monorepo.git",
"directory": "sdks/javascript"
},
"files": [
"dist/**/*",
"README.md",
"DYNAMIC_CONFIG_README.md",
"examples/**/*"
],
"dependencies": {
"axios": "^1.11.0",
"ws": "^8.14.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/ws": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.40.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}