@pyron-finance/pyron-client 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "@pyron-finance/pyron-client",
3
+ "version": "1.0.0",
4
+ "license": "MIT",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.esm.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ "./package.json": "./package.json",
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.cjs"
13
+ },
14
+ "./common": {
15
+ "import": "./dist/common/index.js",
16
+ "default": "./dist/common/index.cjs"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "peerDependencies": {
23
+ "@fogo/sessions-sdk": "^0.0.12",
24
+ "@solana/web3.js": "^1.93.2"
25
+ },
26
+ "dependencies": {
27
+ "@coral-xyz/anchor": "^0.30.1",
28
+ "@coral-xyz/borsh": "^0.30.1",
29
+ "@pythnetwork/pyth-solana-receiver": "^0.8.0",
30
+ "@solana/buffer-layout": "^4.0.1",
31
+ "@solana/buffer-layout-utils": "^0.2.0",
32
+ "@solana/spl-token": "^0.4.13",
33
+ "@solana/wallet-adapter-base": "^0.9.23",
34
+ "@switchboard-xyz/on-demand": "^1.2.54",
35
+ "bignumber.js": "^9.1.2",
36
+ "bn.js": "^5.2.2",
37
+ "borsh": "^2.0.0",
38
+ "bs58": "^6.0.0",
39
+ "crypto-hash": "^3.1.0",
40
+ "debug": "^4.4.1",
41
+ "decimal.js": "^10.4.3",
42
+ "numeral": "^2.0.6",
43
+ "superstruct": "^1.0.4",
44
+ "zod": "^3.23.8"
45
+ },
46
+ "devDependencies": {
47
+ "@arethetypeswrong/cli": "^0.17.4",
48
+ "@biomejs/biome": "2.1.2",
49
+ "@jup-ag/api": "^6.0.38",
50
+ "@total-typescript/ts-reset": "^0.6.1",
51
+ "@types/big.js": "^6.2.2",
52
+ "@types/bn.js": "^5.1.5",
53
+ "@types/debug": "^4.1.12",
54
+ "@types/inquirer": "^9.0.7",
55
+ "@types/node": "^22.14.1",
56
+ "@types/numeral": "^2.0.5",
57
+ "big.js": "^6.2.1",
58
+ "inquirer": "^9.2.23",
59
+ "publint": "^0.3.11",
60
+ "tsdown": "^0.13.0",
61
+ "typedoc": "^0.28.7",
62
+ "typescript": "^5.8.3"
63
+ },
64
+ "scripts": {
65
+ "build": "tsdown",
66
+ "dev": "tsdown --watch",
67
+ "ci": "pnpm run ci:biome && pnpm run check:types && pnpm run build && pnpm run check:exports && pnpm run check:package",
68
+ "ci:biome": "biome ci .",
69
+ "format": "biome format --write .",
70
+ "check:biome": "biome check --write .",
71
+ "check:exports": "attw --pack .",
72
+ "check:types": "tsc",
73
+ "check:package": "publint"
74
+ }
75
+ }