-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.37 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@xmtp/agent-sdk",
"version": "2.2.0",
"description": "XMTP Agent SDK for interacting with XMTP networks",
"keywords": [
"agents",
"javascript",
"js",
"messaging",
"node",
"nodejs",
"typescript",
"web3",
"xmtp"
],
"homepage": "https://docs.xmtp.org/agents/get-started/build-an-agent",
"bugs": {
"url": "https://github.com/xmtp/xmtp-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://git@github.com/xmtp/xmtp-js.git",
"directory": "sdks/agent-sdk"
},
"license": "MIT",
"author": "XMTP Labs <eng@xmtp.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./debug": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./middleware": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./user": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./util": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean:dist && rollup -c",
"clean": "rm -rf .turbo && rm -rf node_modules && yarn clean:dist",
"clean:dist": "rm -rf dist",
"demo:main": "tsx watch src/demo/main.ts",
"demo:transactions": "tsx watch src/demo/transactions.ts",
"fix": "npx prettier --log-level error -w . && npx eslint . --fix",
"gen:keys": "tsx src/bin/generateKeys.ts",
"start": "yarn dev",
"test": "yarn typecheck && vitest run --typecheck",
"test:cov": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@xmtp/content-type-primitives": "3.0.1",
"@xmtp/node-sdk": "5.4.0",
"viem": "^2.37.6"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.9",
"@vitest/coverage-v8": "^4.0.18",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"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/"
}
}