mirror of
https://github.com/Brotocol-xyz/bro-sdk.git
synced 2026-01-12 14:54:21 +08:00
83 lines
2.2 KiB
JSON
83 lines
2.2 KiB
JSON
{
|
|
"name": "@xlink-network/xlink-sdk",
|
|
"version": "0.4.3",
|
|
"description": "XLINK js SDK",
|
|
"packageManager": "pnpm@9.9.0",
|
|
"keywords": [
|
|
"bitcoin",
|
|
"ethereum",
|
|
"stacks",
|
|
"XLINK",
|
|
"alexlab"
|
|
],
|
|
"repository": "github:xlink-network/xlink-sdk",
|
|
"author": "c4605 <yuntao@alexgo.io>",
|
|
"license": "MIT",
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"generated"
|
|
],
|
|
"main": "lib/index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/index.mjs",
|
|
"require": "./lib/index.js",
|
|
"types": "./lib/index.d.ts"
|
|
},
|
|
"./bitcoinHelpers": {
|
|
"import": "./lib/bitcoinHelpers.mjs",
|
|
"require": "./lib/bitcoinHelpers.js",
|
|
"types": "./lib/bitcoinHelpers.d.ts"
|
|
},
|
|
"./lowlevelUnstableInfos": {
|
|
"import": "./lib/lowlevelUnstableInfos.mjs",
|
|
"require": "./lib/lowlevelUnstableInfos.js",
|
|
"types": "./lib/lowlevelUnstableInfos.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"gen:stacksContract": "rm -rf generated/smartContract && mkdir -p generated/smartContract && tsx ./scripts/generateClarityTranscoders.ts",
|
|
"gen": "pnpm run gen:stacksContract",
|
|
"docs": "typedoc",
|
|
"docs:watch": "typedoc --watch",
|
|
"build": "pnpm run gen && rm -rf lib && tsup-node --sourcemap --dts -d lib --format cjs,esm src",
|
|
"prepare": "pnpm run build",
|
|
"test": "vitest --exclude lib"
|
|
},
|
|
"dependencies": {
|
|
"@c4/btc-utils": "^0.3.1",
|
|
"c32check": "^2.0.0",
|
|
"clarity-codegen": "^0.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@c4605/toolconfs": "^5.3.0",
|
|
"@stacks/network": "^6.13.0",
|
|
"@stacks/stacks-blockchain-api-types": "^7.9.0",
|
|
"@stacks/transactions": "^6.13.0",
|
|
"@types/big.js": "^6.2.2",
|
|
"@typescript-eslint/eslint-plugin": "^7.5.0",
|
|
"@typescript-eslint/parser": "^7.5.0",
|
|
"big.js": "^6.2.2",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"prettier": "^3.2.5",
|
|
"tsup": "^8.2.3",
|
|
"tsx": "^4.7.2",
|
|
"typedoc": "^0.26.6",
|
|
"typescript": "^5.4.5",
|
|
"viem": "^2.21.44",
|
|
"vitest": "^1.4.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"@scure/btc-signer": "^1.2.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@stacks/network": "^6.13.0",
|
|
"@stacks/transactions": "^6.13.0",
|
|
"big.js": "^6.2.2",
|
|
"viem": "^2.15.1"
|
|
}
|
|
}
|