blockbook-fetcher
Version:
Blockbook API fetcher for Browser / Node.js
62 lines (61 loc) • 1.77 kB
JSON
{
"name": "blockbook-fetcher",
"version": "1.0.8",
"description": "Blockbook API fetcher for Browser / Node.js",
"license": "MIT",
"author": "CPUchain",
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
}
},
"keywords": [
"cpuchain",
"blockbook",
"trezor",
"fetch",
"browser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cpuchain/blockbook-fetcher.git"
},
"scripts": {
"update": "tsx scripts/types.ts",
"lint": "eslint example.html scripts/**/*.ts src/**/*.ts test/**/*.ts",
"build": "tsc -p tsconfig.types.json --noEmit && rollup -c",
"start": "tsx src/index.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "vitest && istanbul-badges-readme --colors=\"red:50,yellow:60\""
},
"dependencies": {
"ajv": "^8.17.1"
},
"devDependencies": {
"@cpuchain/eslint": "^1.0.9",
"@cpuchain/rollup": "^1.0.4",
"@types/node": "^22.16.0",
"@vitest/coverage-v8": "^3.2.4",
"cross-env": "^7.0.3",
"dotenv": "^17.2.0",
"glob": "^11.0.3",
"istanbul-badges-readme": "^1.9.0",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitepress": "^1.6.3",
"vitest": "^3.2.4"
},
"resolutions": {
"fast-glob": ">=3.3.3"
}
}