-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 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
{
"name": "@heyanon/sdk",
"version": "2.4.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"test": "vitest --run",
"lint": "tsdx lint",
"prepare": "yarn build",
"size": "size-limit",
"analyze": "size-limit --why",
"format": "prettier --write \"*/**/*.ts\""
},
"author": "HeyAnon",
"devDependencies": {
"@size-limit/preset-small-lib": "^9.0.0",
"@types/big.js": "^6.2.0",
"@types/jest": "^29.5.12",
"husky": "^8.0.3",
"size-limit": "^9.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"typescript": "^5.7.3"
},
"repository": "https://github.com/RealWagmi/heyanon-sdk.git",
"keywords": [
"heyanon"
],
"dependencies": {
"@real-wagmi/sdk": "^1.4.6",
"@solana/web3.js": "1.98.0",
"@ton-api/client": "0.3.1",
"@ton-api/ton-adapter": "0.3.0",
"@ton/core": "0.60.0",
"@ton/crypto": "^3.3.0",
"@ton/ton": "15.2.0",
"ccxt": "4.4.78",
"openai": "5.12.1",
"viem": "2.41.2",
"vitest": "^2.1.8"
}
}