UNPKG

@turnkey/core

Version:

A core JavaScript web and React Native package for interfacing with Turnkey's infrastructure.

79 lines 2.16 kB
{ "name": "@turnkey/core", "version": "1.12.0", "description": "A core JavaScript web and React Native package for interfacing with Turnkey's infrastructure.", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "dist/index.d.ts", "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/core" }, "files": [ "dist", "README.md" ], "keywords": [ "turnkey" ], "license": "MIT", "dependencies": { "@wallet-standard/app": "^1.1.0", "@wallet-standard/base": "^1.1.0", "@walletconnect/sign-client": "^2.23.6", "@walletconnect/types": "^2.23.0", "cross-fetch": "^3.1.5", "ethers": "^6.10.0", "jwt-decode": "4.0.0", "uuid": "^11.1.0", "viem": "^2.33.1", "@turnkey/api-key-stamper": "0.6.2", "@turnkey/crypto": "2.8.11", "@turnkey/encoding": "0.6.0", "@turnkey/sdk-types": "0.12.0", "@turnkey/webauthn-stamper": "0.6.0", "@turnkey/http": "3.17.0" }, "devDependencies": { "glob": "^8.0.3", "typescript": "5.4.3" }, "peerDependencies": { "@react-native-async-storage/async-storage": "^2.2.0", "react-native-keychain": "^8.1.0 || ^9.2.2 || ^10.0.0", "@turnkey/react-native-passkey-stamper": "1.2.10" }, "peerDependenciesMeta": { "react-native-keychain": { "optional": true }, "@react-native-async-storage/async-storage": { "optional": true }, "@turnkey/react-native-passkey-stamper": { "optional": true } }, "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').name + '@' + require('./package.json').version) + ';'\" > src/__generated__/version.ts", "build": "rollup -c", "clean": "rimraf ./dist ./.cache", "typecheck": "tsc -p tsconfig.typecheck.json", "test": "jest" } }