-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.43 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
{
"name": "@dtelecom/x402-client",
"version": "0.2.1",
"description": "TypeScript SDK for dTelecom x402 gateway — buy credits and create WebRTC/STT/TTS sessions",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [
"x402",
"webrtc",
"stt",
"tts",
"micropayments",
"dtelecom"
],
"author": "dTelecom <dev@dtelecom.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dTelecom/x402-client.git"
},
"homepage": "https://github.com/dTelecom/x402-client#readme",
"dependencies": {
"@x402/evm": "^2.5.0",
"@x402/fetch": "^2.5.0",
"viem": "^2.0.0"
},
"peerDependencies": {
"@solana/kit": "^5.1.0",
"@x402/svm": "^2.5.0"
},
"peerDependenciesMeta": {
"@x402/svm": {
"optional": true
},
"@solana/kit": {
"optional": true
}
},
"devDependencies": {
"@solana/kit": "^5.5.1",
"@types/node": "^22.0.0",
"@x402/svm": "^2.5.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}