-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"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"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run test/client.test.ts",
"test:e2e": "vitest run test/e2e",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"changelog": "vite-node scripts/changelog.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": {
"@types/node": "^25.9.1",
"graphql": "^16.14.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
}
}