-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.33 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@trustflow/sdk",
"version": "0.2.1",
"description": "SDK to interact with TrustFlow Protocol contracts.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/hooks/index.d.ts",
"import": "./dist/hooks/index.mjs",
"require": "./dist/hooks/index.js"
},
"./escrow": {
"types": "./dist/escrow/index.d.ts",
"import": "./dist/escrow/index.mjs",
"require": "./dist/escrow/index.js"
},
"./wallet": {
"types": "./dist/wallet/index.d.ts",
"import": "./dist/wallet/index.mjs",
"require": "./dist/wallet/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.mjs",
"require": "./dist/utils/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "jest",
"test:coverage": "jest --coverage",
"examples": "ts-node examples/",
"lint": "eslint src",
"lint:strict": "eslint src --config eslint.strict.config.mjs",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"dependencies": {
"@stellar/stellar-sdk": "^15.1.0",
"axios": "^1.18.1",
"axios-retry": "^4.5.0",
"zod": "^3.22.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.3",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.6.0",
"jest": "^30.4.2",
"prettier": "^3.8.4",
"react": "^18.2.0",
"ts-jest": "^29.4.11",
"tsup": "^8.5.1",
"typedoc": "^0.28.20",
"typescript": "^6.0.3"
}
}