-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "@blubbofi/sdk",
"version": "0.1.31",
"description": "SDK that interacts with Blubbo contracts",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"repository": "https://github.com/blubbofi/blubbo-sdk.git",
"scripts": {
"build:tsc": "tsc",
"build:dev": "tsc",
"build:prod": "npm-run-all --serial build:tsc",
"prepublishOnly": "yarn build:prod",
"tsc:check": "tsc --noEmit",
"eslint:check": "eslint --config eslint.config.mjs **/*.ts",
"prettier:check": "prettier --check ./**/*.{json,md,yaml,ts}",
"lint": "npm-run-all --parallel tsc:check eslint:check prettier:check",
"fix": "prettier --write {./**/*.ts,./**/**/*.ts} && prettier --write ./**/*.{json,md,yaml} && eslint --config eslint.config.mjs --fix --ignore-pattern \"build\"",
"test": "jest"
},
"author": "9oelM <[email protected]>",
"license": "None",
"private": false,
"dependencies": {
"@redstone-finance/protocol": "^0.6.2",
"@redstone-finance/sdk": "^0.6.2",
"@ton/core": "^0.59.0",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^15.1.0",
"@tonconnect/sdk": "^3.0.5",
"bignumber.js": "^9.1.2",
"ethers": "5.7.2"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@orbs-network/ton-access": "^2.3.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.7",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
}
}