-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.19 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.19 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@xmtp/convos-cli",
"version": "0.7.3",
"description": "A command-line interface for Convos — privacy-focused messaging built on XMTP",
"keywords": [
"convos",
"xmtp",
"messaging",
"privacy",
"ephemeral",
"per-conversation-identity"
],
"homepage": "https://github.com/xmtplabs/convos-cli",
"bugs": {
"url": "https://github.com/xmtplabs/convos-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xmtplabs/convos-cli.git"
},
"license": "MIT",
"author": "XMTP Labs <eng@xmtp.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./utils/*": {
"types": "./dist/utils/*.d.ts",
"default": "./dist/utils/*.js"
},
"./baseCommand": {
"types": "./dist/baseCommand.d.ts",
"default": "./dist/baseCommand.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"convos": "./bin/run.js"
},
"files": [
"bin",
"dist",
"skills",
"oclif.manifest.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"dev": "tsx bin/dev.js",
"prepack": "npm run build && npx oclif manifest",
"start": "tsx bin/run.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"oclif": {
"bin": "convos",
"commands": "./dist/commands",
"dirname": "convos",
"helpClass": "./dist/help",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available"
],
"topicSeparator": " ",
"topics": {
"agent": {
"description": "Agent mode — long-running sessions with streaming I/O"
},
"identity": {
"description": "Manage per-conversation identities (inboxes)"
},
"conversation": {
"description": "Interact with a specific conversation"
},
"conversations": {
"description": "List, create, and stream conversations"
}
},
"warn-if-update-available": {
"frequency": 1,
"frequencyUnit": "days",
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>.",
"timeoutInDays": 7
}
},
"dependencies": {
"@noble/curves": "^2.0.1",
"@oclif/core": "^4.8.0",
"@oclif/plugin-autocomplete": "^3.2.40",
"@oclif/plugin-help": "^6.2.37",
"@oclif/plugin-not-found": "^3.2.74",
"@oclif/plugin-warn-if-update-available": "^3.1.55",
"@xmtp/content-type-remote-attachment": "^2.0.4",
"@xmtp/node-sdk": "5.3.0",
"protobufjs": "^8.0.0",
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0",
"viem": "^2.44.4"
},
"devDependencies": {
"@types/node": "^24.10.9",
"@types/qrcode": "^1.5.6",
"@types/qrcode-terminal": "^0.12.2",
"execa": "^9.6.1",
"oclif": "^4.22.70",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}