-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 961 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 961 Bytes
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
{
"name": "tdm-protocol",
"version": "0.0.1",
"description": "Open wire contract for TDM SDKs, gateway clients, and protocol-first integrations",
"type": "module",
"sideEffects": false,
"main": "./src/index.js",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"default": "./src/index.js"
}
},
"files": [
"src",
"README.md"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"tdm",
"protocol",
"x402",
"payments",
"sdk"
],
"homepage": "https://todealmarket.com/docs/protocols",
"repository": {
"type": "git",
"url": "git+https://github.com/ToDealMarket/tdm-protocol.git"
},
"bugs": {
"url": "https://github.com/ToDealMarket/tdm-protocol/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"zod": "^4.3.6"
}
}