UNPKG

@basestamp/basestamp

Version:

TypeScript client library for Basestamp API with trustless Merkle proof verification

60 lines (59 loc) 1.39 kB
{ "name": "@basestamp/basestamp", "version": "0.0.2-rc3", "description": "TypeScript client library for Basestamp API with trustless Merkle proof verification", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.ts", "typecheck": "tsc --noEmit", "prepublishOnly": "yarn build" }, "keywords": [ "basestamp", "timestamp", "merkle", "proof", "verification", "blockchain", "crypto" ], "author": "Patrick Shuff", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/basestamp/basestamp-ts.git" }, "files": [ "dist", "README.md", "LICENSE" ], "devDependencies": { "@types/crypto-js": "^4.2.2", "@types/jest": "^29.5.5", "@types/node": "^20.6.3", "@typescript-eslint/eslint-plugin": "^6.7.2", "@typescript-eslint/parser": "^6.7.2", "eslint": "^8.49.0", "jest": "^29.7.0", "ts-jest": "^29.1.1", "tsup": "^7.2.0", "typescript": "^5.2.2" }, "dependencies": { "buffer": "^6.0.3", "cross-fetch": "^4.1.0", "crypto-js": "^4.2.0" } }