-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.62 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
{
"name": "@stellar-split/sdk",
"version": "0.1.0",
"description": "TypeScript SDK for the StellarSplit on-chain invoice splitting dApp",
"license": "MIT",
"author": "StellarSplit Contributors",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"import": "./dist/testing/index.js",
"require": "./dist/testing/index.cjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js",
"require": "./dist/utils.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run test/client.test.ts test/retryPolicy.test.ts",
"test:e2e": "vitest run test/e2e",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"changelog": "vite-node scripts/changelog.ts",
"docs": "ts-node scripts/generate-docs.ts"
},
"dependencies": {
"@ledgerhq/hw-app-str": "^6.29.0",
"@ledgerhq/hw-transport-webhid": "^6.35.2",
"@stellar/freighter-api": "^3.1.0",
"@stellar/stellar-sdk": "^13.3.0",
"@walletconnect/sign-client": "^2.23.9"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^12.1.0",
"@types/node": "^25.9.1",
"fake-indexeddb": "^6.2.5",
"graphql": "^16.14.0",
"size-limit": "^12.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
}
}