UNPKG

near-ca-test

Version:

An SDK for controlling Ethereum Accounts from a Near Account.

65 lines 1.88 kB
{ "name": "near-ca-test", "version": "0.0.0", "license": "MIT", "private": false, "description": "An SDK for controlling Ethereum Accounts from a Near Account.", "author": "@markeljan", "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/* && yarn build:esm && yarn build:cjs", "build:esm": "tsc -p tsconfig.esm.json", "build:cjs": "tsc -p tsconfig.cjs.json", "build:deployments": "tsx scripts/safe-deployments.ts && prettier --write 'src/_gen/**/*.ts'", "start": "yarn example", "example": "tsx examples/send-tx.ts", "lint": "prettier --check '{src,examples,tests}/**/*.{js,jsx,ts,tsx}' && eslint . --ignore-pattern dist/", "fmt": "prettier --write '{src,examples,tests}/**/*.{js,jsx,ts,tsx}' && yarn lint --fix", "test": "jest --passWithNoTests", "all": "yarn fmt && yarn lint && yarn build" }, "engines": { "node": ">=20.0.0" }, "devDependencies": { "@types/babel__core": "^7.20.5", "@types/elliptic": "^6.4.18", "@types/node": "^22.10.6", "@typescript-eslint/eslint-plugin": "^8.20.0", "@typescript-eslint/parser": "^8.20.0", "dotenv": "^16.4.5", "eslint": "^9.18.0", "ethers": "^6.13.3", "opensea-js": "^7.1.12", "prettier": "^3.3.3", "tsx": "^4.16.2", "typescript": "^5.7.3" }, "dependencies": { "@walletconnect/web3wallet": "^1.13.0", "elliptic": "^6.5.6", "js-sha3": "^0.9.3", "near-api-js": "^5.0.1", "viem": "^2.22.8" }, "resolutions": { "glob": "^11.0.1" } }