@tubalchat/agent-sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +32 -0
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@tubalchat/agent-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Give any AI agent an E2E encrypted identity on the Tubal network",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": ["dist"],
16
+ "scripts": {
17
+ "build": "tsup",
18
+ "dev": "tsup --watch"
19
+ },
20
+ "keywords": ["tubal", "e2e", "encrypted", "agent", "ai", "p2p", "nostr"],
21
+ "license": "MIT",
22
+ "engines": {
23
+ "node": ">=20.0.0"
24
+ },
25
+ "dependencies": {
26
+ "nostr-tools": "^2.10.4"
27
+ },
28
+ "devDependencies": {
29
+ "tsup": "^8.0.0",
30
+ "typescript": "^5.4.0"
31
+ }
32
+ }