-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 1.45 KB
/
package.json
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
{
"name": "@mayanfinance/swap-sdk",
"description": "A SDK to swap with Mayan",
"version": "9.5.0",
"source": "src/main.ts",
"main": "dist/index.js",
"module": "dist/index.esm.min.js",
"unpkg": "dist/index.iife.min.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/mayan-finance/swap-sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/mayan-finance/swap-sdk.git"
},
"keywords": [
"mayan",
"mayanfinance",
"mayansdk",
"swap-sdk"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup --clean && tsup --minify",
"watch": "tsup --watch",
"lint": "prettier src -c",
"format": "prettier src --write",
"prepack": "npm run build",
"release": "npm run prepack && npx np --no-tests"
},
"devDependencies": {
"prettier": "^2.6.2",
"tsup": "^6.7.0",
"typescript": "^4.9.4"
},
"prettier": {
"singleQuote": true
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"author": "Jiri",
"dependencies": {
"@solana/buffer-layout": "^4 || ^3",
"@solana/web3.js": "^1.87.6",
"bs58": "^6.0.0",
"cross-fetch": "^3.1.5",
"ethers": "^6",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0"
}
}