@holographxyz/sdk
Version:
Holograph SDK for interacting with the Holograph Protocol.
50 lines • 1.44 kB
JSON
{
"name": "@holographxyz/sdk",
"version": "0.1.2",
"description": "Holograph SDK for interacting with the Holograph Protocol.",
"license": "SEE LICENSE IN LICENSE.md",
"keywords": [
"holograph",
"ethereum",
"sdk"
],
"homepage": "https://github.com/holographxyz/holograph/tree/develop/packages/sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/holographxyz/holograph.git"
},
"author": "Holograph",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"dependencies": {
"@holographxyz/environment": "^0.1.11",
"uuid": "^9.0.1",
"viem": "^2.7.6",
"@holographxyz/networks": "^0.2.15"
},
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"abitype": "^0.10.2",
"dotenv": "^10.0.0",
"ethers": "^6.8.1",
"tsup": "^8.0.2",
"vitest": "^0.34.6",
"zod": "^3.22.4",
"tsconfig": "0.0.0"
},
"scripts": {
"all": "pnpm clean && pnpm build && pnpm test && pnpm lint:fix && pnpm lint",
"build": "rimraf dist && tsup ./src/**/*.ts && tsup ./src/index.ts --dts",
"clean": "rimraf dist/ ./tsconfig.tsbuildinfo",
"lint": "pnpm lint:fix && pnpm lint:check",
"lint:check": "eslint . --max-warnings=0",
"lint:fix": "pnpm lint:check --fix",
"pre-commit": "lint-staged",
"test": "vitest --reporter=verbose",
"coverage": "vitest run --coverage"
}
}