UNPKG

near-ca

Version:

An SDK for controlling Ethereum Accounts from a Near Account.

61 lines (60 loc) 1.63 kB
{ "name": "near-ca", "version": "0.11.0", "license": "MIT", "description": "An SDK for controlling Ethereum Accounts from a Near Account.", "author": "@bh2smith", "repository": { "type": "git", "url": "https://github.com/BitteProtocol/near-ca" }, "bugs": { "url": "https://github.com/BitteProtocol/near-ca/issues" }, "keywords": [ "near", "ethereum", "chain-signatures" ], "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "files": [ "dist/**/*" ], "scripts": { "build": "rm -fr dist/* && bun build:esm && bun build:cjs", "build:esm": "tsc -p tsconfig.esm.json", "build:cjs": "tsc -p tsconfig.cjs.json", "lint": "eslint . --ignore-pattern dist/ && prettier --check **/*.ts", "test": "jest --passWithNoTests", "coverage": "bun test --coverage", "verify": "bun coverage unit", "fmt": "prettier --write '{src,examples,tests}/**/*.{js,jsx,ts,tsx}' && eslint src/ --fix" }, "engines": { "node": ">=20.0.0" }, "dependencies": { "@reown/walletkit": "^1.2.4", "elliptic": "^6.6.1", "js-sha3": "^0.9.3", "near-api-js": "^6.2.4", "viem": "^2.29.3" }, "devDependencies": { "@types/elliptic": "^6.4.18", "@types/jest": "^30.0.0", "@types/node": "^24.2.0", "@typescript-eslint/eslint-plugin": "^8.21.0", "@typescript-eslint/parser": "^8.21.0", "dotenv": "^17.2.1", "eslint": "^9.19.0", "ethers": "^6.13.3", "opensea-js": "^7.1.12", "prettier": "^3.5.3", "ts-jest": "^29.2.3", "tsx": "^4.16.2", "typescript": "^5.7.3" } }