@ocap/wallet
Version:
Utility function to create and use an forge compatible crypto wallet
62 lines • 1.65 kB
JSON
{
"name": "@ocap/wallet",
"version": "1.21.2",
"description": "Utility function to create and use an forge compatible crypto wallet",
"keywords": [
"crypto",
"arcblock",
"wallet"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "wangshijun",
"email": "shijun@arcblock.io",
"url": "https://github.com/wangshijun"
},
"contributors": [
"wangshijun <shijun@arcblock.io> (https://github.com/wangshijun)"
],
"homepage": "https://github.com/ArcBlock/blockchain/tree/master/core/forge-wallet",
"license": "Apache-2.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"esm"
],
"devDependencies": {
"@arcblock/eslint-config-ts": "0.3.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArcBlock/blockchain.git"
},
"bugs": {
"url": "https://github.com/ArcBlock/blockchain/issues"
},
"dependencies": {
"@arcblock/did": "1.21.2",
"@ocap/mcrypto": "1.21.2",
"@ocap/util": "1.21.2"
},
"scripts": {
"lint": "eslint tests src",
"lint:fix": "eslint --fix tests src",
"test": "jest --forceExit --detectOpenHandles",
"coverage": "npm run test -- --coverage",
"clean": "rm -fr lib esm",
"prebuild": "npm run clean",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"build:watch": "npm run build -- -w"
}
}