-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.39 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.39 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@smoothsend/sdk",
"version": "2.3.5",
"description": "Multi-chain gasless transaction SDK with C-Address (Soroban Smart Account) support for Stellar, Aptos & more",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./avax": {
"import": "./dist/avax/index.js",
"require": "./dist/avax/index.cjs",
"types": "./dist/avax/index.d.ts"
},
"./aptos": {
"import": "./dist/aptos/index.js",
"require": "./dist/aptos/index.cjs",
"types": "./dist/aptos/index.d.ts"
},
"./stellar": {
"import": "./dist/stellar/index.js",
"require": "./dist/stellar/index.cjs",
"types": "./dist/stellar/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"example:authentication": "ts-node examples/authentication.ts",
"example:health-status": "ts-node examples/health-and-status.ts",
"example:usage-tracking": "ts-node examples/usage-tracking.ts",
"example:token-sender": "cd examples/token-sender && npm run dev",
"example:nft-marketplace": "cd examples/nft-marketplace && npm run dev",
"example:avax-smoke": "tsx examples/avax/01-gateway-smoke.ts",
"example:avax-backend-sponsored": "tsx examples/avax/02-backend-sponsored-submit.ts",
"example:avax-backend-erc20": "tsx examples/avax/03-backend-user-pays-erc20.ts",
"example:avax-low-level": "tsx examples/avax/04-low-level-steps.ts"
},
"keywords": [
"aptos",
"stellar",
"gasless",
"transactions",
"gas-free",
"sponsored-transactions",
"c-address",
"smart-account",
"soroban",
"wallet-adapter",
"move",
"xlm",
"usdc",
"blockchain",
"dapp",
"web3",
"relayer",
"smoothsend"
],
"author": "SmoothSend Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smoothsend-sdk.git"
},
"bugs": {
"url": "https://github.com/smoothsend-sdk/issues"
},
"homepage": "https://smoothsend.xyz",
"peerDependencies": {
"@aptos-labs/ts-sdk": ">=6.0.0",
"@aptos-labs/wallet-adapter-core": ">=3.0.0",
"@aptos-labs/wallet-adapter-react": ">=3.0.0",
"react": ">=17.0.0",
"viem": ">=2.21.0"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@aptos-labs/ts-sdk": "^6.3.1",
"@aptos-labs/wallet-adapter-react": "^3.0.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"react": "^18.0.0",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.2.2",
"viem": "^2.21.54"
},
"engines": {
"node": ">=16.0.0"
}
}