forked from Echo-Mirror-Butler/echomirror-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "@echomirror/stellar",
"version": "0.2.0",
"description": "EchoMirror SDK Stellar integration — multi-wallet (Freighter, Albedo, xBull), transaction builders, and typed errors",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:integration": "STELLAR_INTEGRATION=1 vitest run tests/integration --testTimeout 120000",
"pretest:e2e": "node e2e/scripts/fetch-freighter.mjs",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit",
"lint": "eslint src"
},
"keywords": [
"echomirror",
"stellar",
"blockchain",
"freighter",
"albedo",
"xbull",
"wallet",
"payments"
],
"license": "MIT",
"dependencies": {
"@albedo-link/intent": "^0.12.0",
"@echomirror/core": "*",
"@stellar/freighter-api": "^6.0.0",
"@stellar/stellar-sdk": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"@types/node": "^22.0.0",
"esbuild": "^0.28.1",
"typescript": "*",
"vitest": "*"
}
}