@xmtp/node-sdk
Version:
XMTP Node client SDK for interacting with XMTP networks
85 lines (84 loc) • 2.21 kB
JSON
{
"name": "@xmtp/node-sdk",
"version": "4.6.0",
"description": "XMTP Node client SDK for interacting with XMTP networks",
"keywords": [
"xmtp",
"messaging",
"web3",
"js",
"javascript",
"node",
"nodejs"
],
"homepage": "https://github.com/xmtp/xmtp-js",
"bugs": {
"url": "https://github.com/xmtp/xmtp-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://git@github.com/xmtp/xmtp-js.git",
"directory": "packages/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-group-updated": "^2.0.2",
"@xmtp/content-type-primitives": "^2.0.2",
"@xmtp/content-type-text": "^2.0.2",
"@xmtp/node-bindings": "1.6.8"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^4.0.3",
"fast-glob": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"uint8array-extras": "^1.5.0",
"uuid": "^13.0.0",
"viem": "^2.38.4",
"vite": "^7.1.12",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.3"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
}
}