-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.01 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
{
"name": "@folks-finance/xchain-sdk",
"description": "The official JavaScript SDK for the Folks Finance Cross-Chain Lending Protocol",
"version": "0.0.49",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Folks-Finance/xchain-js-sdk.git"
},
"type": "module",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"prepare": "husky",
"commit": "cz",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"dnum": "^2.13.1",
"viem": "^2.13.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@eslint/js": "^9.2.0",
"@types/node": "^20.12.12",
"@typescript-eslint/parser": "^7.10.0",
"commitizen": "^4.3.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import-x": "^0.5.0",
"eslint-plugin-unicorn": "^53.0.0",
"globals": "^15.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"packageManager": "[email protected]+sha256.9551e803dcb7a1839fdf5416153a844060c7bce013218ce823410532504ac10b",
"keywords": [
"folks-finance",
"cross-chain",
"xlending",
"blockchain",
"ethereum",
"evm"
]
}