forked from traderjoe-xyz/joe-sdk-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.48 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": "@traderjoe-team/spruce-sdk-v2",
"license": "MIT",
"version": "1.0.7",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/traderjoe-xyz/spruce-sdk-v2",
"keywords": [
"traderjoe-xyz",
"avalanche"
],
"module": "dist/sdk.esm.js",
"scripts": {
"lint": "tsdx lint src",
"lint:fix": "yarn lint --fix",
"build": "tsdx build",
"start": "tsdx watch",
"test": "vitest --config ./vitest.config.ts",
"prepublishOnly": "tsdx build"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@traderjoe-team/spruce-sdk": "^1.0.12",
"jsbi": "^3.1.1",
"lodash.flatmap": "^4.5.0",
"tiny-invariant": "^1.1.0",
"tiny-warning": "^1.0.3",
"toformat": "^2.0.0"
},
"peerDependencies": {
"viem": "^0.3.x"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"@types/jest": "^24.0.25",
"@types/lodash.flatmap": "^4.5.7",
"babel-plugin-transform-jsbi-to-bigint": "^1.3.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"node-fetch": "^3.3.1",
"tsdx": "^0.14.1",
"viem": "^0.3.31",
"vitest": "^0.31.0"
},
"resolutions": {
"tsdx/typescript": "^4.9.4",
"tsdx/@typescript-eslint/eslint-plugin": "^5.49.0",
"tsdx/@typescript-eslint/parser": "^5.49.0",
"tsdx/eslint": "^7.1.0"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
}
}