@bsv/overlay
Version:
BSV Blockchain Overlay Services Engine
90 lines • 2.45 kB
JSON
{
"name": "@bsv/overlay",
"version": "2.2.0",
"type": "module",
"description": "BSV Blockchain Overlay Services Engine",
"main": "dist/cjs/mod.js",
"module": "dist/esm/mod.js",
"types": "dist/types/mod.d.ts",
"files": [
"dist",
"src",
"docs",
"mod.ts",
"LICENSE.txt"
],
"exports": {
".": {
"types": "./dist/types/mod.d.ts",
"import": "./dist/esm/mod.js",
"require": "./dist/cjs/mod.js"
},
"./*.ts": {
"types": "./dist/types/src/*.d.ts",
"import": "./dist/esm/src/*.js",
"require": "./dist/cjs/src/*.js"
},
"./storage": {
"import": "./dist/esm/src/storage/index.js",
"require": "./dist/cjs/src/storage/index.js",
"types": "./dist/types/src/storage/index.d.ts"
},
"./storage/*": {
"import": "./dist/esm/src/storage/*.js",
"require": "./dist/cjs/src/storage/*.js",
"types": "./dist/types/src/storage/*.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsv-blockchain/ts-stack.git",
"directory": "packages/overlays/overlay"
},
"keywords": [
"BSV",
"Blockchain",
"Overlay",
"Bitcoin",
"SV"
],
"author": "BSV Association",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/bsv-blockchain/ts-stack/issues"
},
"homepage": "https://github.com/bsv-blockchain/ts-stack/tree/main/packages/overlays/overlay#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^26.0.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-standard": "^12.0.2",
"ts2md": "^0.2.0",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^6.0.3",
"@bsv/sdk": "^2.1.3"
},
"dependencies": {
"@bsv/gasp": "^1.3.0",
"knex": "^3.2.10"
},
"peerDependencies": {
"@bsv/sdk": "^2.1.6"
},
"peerDependenciesMeta": {
"@bsv/sdk": {
"optional": false
}
},
"scripts": {
"test": "npm run build && jest",
"test:watch": "npm run build && jest --watch",
"test:coverage": "npm run build && jest --coverage",
"lint": "ts-standard --fix src/**/*.ts",
"lint:ci": "ts-standard src/**/*.ts",
"build": "tsc -b && tsconfig-to-dual-package tsconfig.cjs.json",
"dev": "tsc -b -w",
"prepublish": "npm run build",
"doc": "ts2md --inputFilename=mod.ts --outputFilename=docs/API.md --filenameSubstring=API --firstHeadingLevel=1"
}
}