@arklabs/wallet-sdk
Version:
Bitcoin wallet SDK with Taproot and Ark integration
88 lines • 2.92 kB
JSON
{
"name": "@arklabs/wallet-sdk",
"version": "0.0.15",
"description": "Bitcoin wallet SDK with Taproot and Ark integration",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@noble/curves": "1.7.0",
"@noble/hashes": "1.6.1",
"@noble/secp256k1": "2.2.3",
"@scure/base": "1.2.1",
"@scure/btc-signer": "1.7.0",
"bip68": "1.0.4"
},
"devDependencies": {
"rimraf": "^5.0.0",
"@eslint/js": "^9.17.0",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"@vitest/coverage-v8": "2.1.8",
"esbuild": "^0.20.1",
"eslint": "^9.17.0",
"glob": "11.0.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"keywords": [
"bitcoin",
"wallet",
"taproot",
"ark",
"sdk"
],
"author": "Ark Labs",
"license": "MIT",
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
},
"scripts": {
"build": "rimraf dist && pnpm run build:esm && node scripts/add-extensions.js && pnpm run build:cjs && pnpm run build:types && node scripts/generate-package-files.js",
"build:esm": "tsc -p tsconfig.esm.json --outDir dist/esm",
"build:cjs": "tsc -p tsconfig.cjs.json --outDir dist/cjs",
"build:types": "tsc -p tsconfig.json --outDir dist/types --emitDeclarationOnly",
"build:browser": "node scripts/build-browser.js",
"test": "vitest run",
"test:master": "ARK_ENV=master vitest run",
"test:unit": "vitest run --exclude test/integration.test.ts",
"test:setup": "node test/setup.js",
"test:setup-master": "node test/setup.js master",
"test:up-master": "docker compose -f docker-compose.yml up -d --build",
"test:down-master": "docker compose -f docker-compose.yml down",
"test:integration": "vitest run test/integration.test.ts",
"test:integration-master": "ARK_ENV=master vitest run test/integration.test.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:sw": "pnpm run build:browser && node test/serviceWorker/serve.js",
"format": "prettier --write src test",
"lint": "prettier --check src test",
"audit": "pnpm audit",
"preinstall": "npx only-allow pnpm",
"release": "bash scripts/release.sh",
"release:dry-run": "bash scripts/release.sh --dry-run",
"release:cleanup": "bash scripts/release.sh --cleanup",
"precommit": "lint-staged"
}
}