UNPKG

vana-sdk

Version:

A TypeScript library for interacting with Vana Network smart contracts

55 lines (54 loc) 1.25 kB
{ "name": "vana-sdk", "version": "1.0.8", "description": "A TypeScript library for interacting with Vana Network smart contracts", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "rimraf dist && tsc", "lint": "eslint . --ext .ts", "format": "prettier --write .", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "prepublishOnly": "npm run build" }, "keywords": [ "vana", "blockchain", "web3", "sdk" ], "author": "", "license": "ISC", "type": "commonjs", "dependencies": { "abitype": "^1.0.8", "viem": "^2.22.2" }, "devDependencies": { "@types/node": "^22.15.18", "@typescript-eslint/eslint-plugin": "^8.32.1", "@typescript-eslint/parser": "^8.32.1", "eslint": "^9.26.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.0", "prettier": "^3.5.3", "rimraf": "^5.0.10", "ts-node": "^10.9.2", "typescript": "^5.8.3", "vitest": "^1.3.0" }, "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "https://github.com/yourusername/vana-sdk.git" } }