UNPKG

@usebool/sdk-js

Version:

Core JS SDK for Bool feature flag system

43 lines 1.14 kB
{ "name": "@usebool/sdk-js", "version": "1.0.0", "type": "module", "description": "Core JS SDK for Bool feature flag system", "main": "./lib/index.js", "module": "./lib/index.module.js", "source": "./src/index.ts", "types": "./lib/index.d.ts", "files": [ "lib" ], "repository": { "type": "git", "url": "git+https://github.com/BoolOfficial/sdks.git" }, "keywords": [ "bool", "usebool", "feature flags", "feature toggles", "client" ], "author": "Bool <hello@usebool.com>", "license": "MIT", "bugs": { "url": "https://github.com/BoolOfficial/sdks/issues" }, "homepage": "https://usebool.com", "engines": { "node": ">=12.2" }, "dependencies": { "cross-fetch": "^3.1.5" }, "scripts": { "ts-declaration": "tsc --declaration --emitDeclarationOnly --outDir lib", "build": "pnpm ts-declaration && node scripts/build.js && echo 'JS build complete'", "test": "jest --config ./jest.config.cjs --passWithNoTests", "lint": "eslint . --ext .ts,.tsx --max-warnings 0 --debug", "typecheck": "tsc --noEmit && echo \"Checked types for sdk-js\" " } }