UNPKG

@turnkey/http

Version:

Typed HTTP client for interacting with Turnkey API

57 lines 1.42 kB
{ "name": "@turnkey/http", "version": "4.0.0", "main": "./dist/index.js", "module": "./dist/index.mjs", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js", "default": "./dist/index.mjs" } }, "types": "./dist/index.d.ts", "license": "Apache-2.0", "description": "Typed HTTP client for interacting with Turnkey API", "keywords": [ "Turnkey" ], "author": { "name": "Turnkey", "url": "https://turnkey.com/" }, "homepage": "https://github.com/tkhq/sdk", "bugs": { "url": "https://github.com/tkhq/sdk/issues" }, "repository": { "type": "git", "url": "git+https://github.com/tkhq/sdk.git", "directory": "packages/http" }, "files": [ "dist/", "CHANGELOG.md", "README.md" ], "publishConfig": { "access": "public" }, "dependencies": { "cross-fetch": "^3.1.5", "@turnkey/api-key-stamper": "0.6.6", "@turnkey/webauthn-stamper": "0.6.0", "@turnkey/encoding": "0.6.0" }, "engines": { "node": ">=18.0.0" }, "scripts": { "version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').name + '@' + require('./package.json').version) + ';'\" > src/version.ts", "build": "rollup -c", "clean": "rimraf ./dist ./.cache", "test": "jest", "typecheck": "tsc -p tsconfig.typecheck.json" } }