-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.53 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
{
"name": "@routstr/sdk",
"version": "0.3.10",
"description": "Framework-agnostic SDK for Routstr API interactions",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.mts",
"import": "./dist/browser.mjs",
"require": "./dist/browser.js"
},
"./node": {
"types": "./dist/node.d.mts",
"import": "./dist/node.mjs",
"require": "./dist/node.js"
},
"./bun": {
"types": "./dist/bun.d.mts",
"import": "./dist/bun.mjs",
"require": "./dist/bun.js"
},
"./storage": {
"types": "./dist/storage/index.d.mts",
"import": "./dist/storage/index.mjs",
"require": "./dist/storage/index.js"
},
"./storage/node": {
"types": "./dist/storage/node.d.mts",
"import": "./dist/storage/node.mjs",
"require": "./dist/storage/node.js"
},
"./storage/bun": {
"types": "./dist/storage/bun.d.mts",
"import": "./dist/storage/bun.mjs",
"require": "./dist/storage/bun.js"
},
"./wallet": {
"types": "./dist/wallet/index.d.mts",
"import": "./dist/wallet/index.mjs",
"require": "./dist/wallet/index.js"
},
"./discovery": {
"types": "./dist/discovery/index.d.mts",
"import": "./dist/discovery/index.mjs",
"require": "./dist/discovery/index.js"
},
"./client": {
"types": "./dist/client/index.d.mts",
"import": "./dist/client/index.mjs",
"require": "./dist/client/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@cashu/cashu-ts": "^3.1.1",
"applesauce-core": "^5.1.0",
"applesauce-relay": "^5.1.0",
"applesauce-sqlite": "^6.0.0",
"rxjs": "^7.8.1",
"zustand": "^5.0.5"
},
"optionalDependencies": {
"better-sqlite3": "^12.10.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"joycon": "^3.1.1",
"tsup": "^8.5.1",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"keywords": [
"routstr",
"ai",
"llm",
"mcp",
"model-context-protocol",
"cashu",
"bitcoin",
"micropayments"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/routstr/routstr-sdk"
}
}