mirror of
https://github.com/alexgo-io/b20.git
synced 2026-01-13 06:30:11 +08:00
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "b20",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"scripts": {
|
|
"test": "clarinet test tests/*",
|
|
"prepare": "husky install"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/alexgo-io/b20.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "ALEX Dev Team",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/alexgo-io/b20/issues"
|
|
},
|
|
"homepage": "https://github.com/alexgo-io/b20#readme",
|
|
"devDependencies": {
|
|
"@noble/hashes": "^1.3.0",
|
|
"@scure/base": "^1.1.1",
|
|
"@scure/btc-signer": "^1.0.0",
|
|
"@stacks/common": "^6.0.0",
|
|
"@stacks/keychain": "^4.3.8",
|
|
"@stacks/network": "^6.3.0",
|
|
"@stacks/transactions": "^6.5.0",
|
|
"@types/node": "^18.15.11",
|
|
"bip32": "^4.0.0",
|
|
"bip39": "^3.1.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.2.1",
|
|
"prettier": "^2.8.7",
|
|
"prettier-plugin-organize-imports": "^3.2.2",
|
|
"tiny-secp256k1": "^2.2.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsx": "^3.12.7",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,json,md,ts,tsx}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"semi": true,
|
|
"tabWidth": 2,
|
|
"arrowParens": "avoid",
|
|
"trailingComma": "all",
|
|
"printWidth": 80
|
|
},
|
|
"dependencies": {
|
|
"@stacks/wallet-sdk": "^6.5.0",
|
|
"micro-stacks": "^1.2.1",
|
|
"node-gyp": "^9.3.1",
|
|
"redstone-api": "^0.4.11",
|
|
"ts-node-dev": "^2.0.0"
|
|
}
|
|
}
|