UNPKG

@aptos-labs/siwa

Version:
79 lines 1.92 kB
{ "name": "@aptos-labs/siwa", "version": "0.5.2", "description": "Library of utilities for Sign in with Aptos", "repository": { "type": "git", "url": "https://github.com/aptos-labs/sign-in-with-aptos.git", "directory": "packages/siwa" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./legacy": { "types": "./dist/legacy/index.d.ts", "import": "./dist/legacy/index.mjs", "require": "./dist/legacy/index.js" } }, "sideEffects": false, "files": [ "dist", "src", "README.md", "CHANGELOG.md", "LICENSE" ], "dependencies": { "@aptos-labs/wallet-standard": "^0.5.2", "@noble/hashes": "^1.8.0" }, "peerDependencies": { "@aptos-labs/derived-wallet-ethereum": ">=0.8.2", "@aptos-labs/derived-wallet-solana": ">=0.8.2", "@aptos-labs/ts-sdk": ">=5.0.0" }, "peerDependenciesMeta": { "@aptos-labs/derived-wallet-solana": { "optional": true }, "@aptos-labs/derived-wallet-ethereum": { "optional": true } }, "devDependencies": { "@aptos-labs/derived-wallet-ethereum": "^0.8.2", "@aptos-labs/derived-wallet-solana": "^0.8.2", "@aptos-labs/ts-sdk": "^5.1.5", "@solana/web3.js": "^1.98.4", "dotenv": "^16.6.1", "tsup": "^8.5.1", "typescript": "^5.9.3" }, "keywords": [ "aptos", "apt", "siwa", "web3", "blockchain", "dapps", "wallet" ], "scripts": { "build": "tsup", "lint": "biome lint .", "lint:fix": "biome lint --write .", "format": "biome format .", "format:fix": "biome format --write .", "check": "biome check", "check:fix": "biome check --write", "test": "vitest run --coverage", "test:watch": "vitest" } }