@xmtp/node-sdk
Version:
XMTP Node client SDK for interacting with XMTP networks
83 lines (82 loc) • 2.12 kB
JSON
{
"name": "@xmtp/node-sdk",
"version": "6.1.0",
"description": "XMTP Node client SDK for interacting with XMTP networks",
"keywords": [
"xmtp",
"messaging",
"web3",
"js",
"javascript",
"node",
"nodejs"
],
"homepage": "https://github.com/xmtp/libxmtp",
"bugs": {
"url": "https://github.com/xmtp/libxmtp/issues"
},
"repository": {
"type": "git",
"url": "git+https://git@github.com/xmtp/libxmtp.git",
"directory": "sdks/js/node-sdk"
},
"license": "MIT",
"author": "XMTP Labs <eng@xmtp.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean:dist && rollup -c",
"clean": "rimraf .turbo && yarn clean:dbs && yarn clean:dist && yarn clean:deps",
"clean:dbs": "rimraf **/*.db3* ||:",
"clean:deps": "rimraf node_modules",
"clean:dist": "rimraf dist",
"dev": "yarn build --watch",
"generate:accounts": "tsx scripts/accounts.ts",
"generate:groups": "tsx scripts/groups.ts",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"typecheck": "tsc"
},
"dependencies": {
"@xmtp/content-type-primitives": "3.0.0",
"@xmtp/node-bindings": "1.11.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.9",
"@vitest/coverage-v8": "^4.0.18",
"fast-glob": "^3.3.3",
"rimraf": "^6.1.2",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"uint8array-extras": "^1.5.0",
"viem": "^2.44.4",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
}
}