-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@balmy/sdk",
"version": "0.4.8",
"contributors": [
{
"name": "Nicolás Chamo",
"email": "nchamo@balmy.xyz",
"url": "https://github.com/nchamo"
},
{
"name": "fiboape",
"email": "fiboape@balmy.xyz",
"url": "https://github.com/fiboape"
},
{
"name": "0xged",
"email": "ged@balmy.xyz",
"url": "https://github.com/0xged"
},
{
"name": "Sam Bugs",
"email": "sam@balmy.xyz",
"url": "https://github.com/0xsambugs"
}
],
"main": "./dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsconfig-replace-paths -s src -p tsconfig.json",
"lint:check": "prettier --check .",
"lint:fix": "sort-package-json && prettier --write .",
"prepare": "husky install",
"script": "ts-node -r tsconfig-paths/register",
"test": "jest --forceExit --detectOpenHandles --verbose",
"test:integration": "jest --forceExit --detectOpenHandles --verbose --testPathPattern=test/integration -t \"^(?!.*\\[External Quotes\\]).*$\"",
"test:integration:quotes": "jest --forceExit --detectOpenHandles --verbose -t \".*\\[External Quotes\\].*\"",
"test:unit": "jest --forceExit --detectOpenHandles --verbose --testPathPattern=test/unit"
},
"lint-staged": {
"*.{js,css,md,ts,sol}": "prettier --write",
"package.json": "sort-package-json"
},
"dependencies": {
"cross-fetch": "3.1.5",
"crypto-js": "4.2.0",
"deepmerge": "4.3.1",
"lru-cache": "9.0.3",
"ms": "3.0.0-canary.1",
"qs": "6.11.2",
"viem": "2.18.4"
},
"devDependencies": {
"@commitlint/cli": "17.8.0",
"@commitlint/config-conventional": "17.8.0",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "1.0.8",
"@nomicfoundation/hardhat-toolbox": "2.0.2",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@types/crypto-js": "4.1.2",
"@types/jest": "29.5.6",
"@types/node": "18.16.3",
"@types/qs": "6.9.10",
"@types/ws": "8.5.10",
"chai": "4.3.7",
"dotenv": "16.3.1",
"ethers": "5.7.2",
"hardhat": "2.13.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.2.2",
"patch-package": "8.0.0",
"prettier": "2.8.8",
"sort-package-json": "2.6.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"tsconfig-replace-paths": "0.0.14",
"typescript": "5.4.2"
},
"publishConfig": {
"access": "public"
}
}