gcx/blockchain/genex-sdk-js/package.json

30 lines
679 B
JSON

{
"name": "@genex/sdk",
"version": "1.0.0",
"description": "Genex Chain SDK — TypeScript/JavaScript client for chain interaction",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest",
"lint": "tsc --noEmit"
},
"dependencies": {
"ethers": "^6.13.0",
"ws": "^8.17.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/ws": "^8.5.10",
"tsup": "^8.1.0",
"typescript": "^5.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.0"
},
"peerDependencies": {
"ethers": "^6.0.0"
}
}