-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.18 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@aave/aave-v3-aptos-ts-sdk",
"version": "0.0.23",
"description": "Aave's typescript sdk for Aptos",
"main": "dist/cmd/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"up": "pnpm update",
"check": "pnpm outdated",
"upgrade": "pnpm run up && pnpm run check && pnpm run build",
"clean-dist": "rimraf dist/*",
"build-esm": "tsc --project tsconfig.esm.json",
"build-commonjs": "tsc --project tsconfig.commonjs.json",
"build-bundle": "webpack",
"build": "npm-run-all clean-dist build-*",
"update-version-major": "pnpm version major",
"update-version-minor": "pnpm version minor",
"update-version-patch": "pnpm version patch",
"test": "jest",
"test:cov": "jest --coverage",
"supply": "tsx examples/users/supply.ts",
"borrow": "tsx examples/users/borrow.ts",
"withdraw": "tsx examples/users/withdraw.ts",
"repay": "tsx examples/users/repay.ts",
"get-aptos": "tsx examples/quiries/getAptos.ts",
"get-addresses": "tsx examples/quiries/getAddresses.ts",
"get-user-data": "tsx examples/quiries/getUserData.ts",
"setup-testnet": "tsx examples/admin/setupTestnet.ts",
"mint-underlyings": "tsx examples/admin/mintUnderlyings.ts",
"set-asset-prices": "tsx examples/admin/setAssetPrices.ts",
"lint": "eslint . --no-cache --ignore-pattern 'bundle.js'",
"lint:fix": "eslint . --fix --no-cache --ignore-pattern 'bundle.js'",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"fmt": "pnpm run prettier:fix && pnpm run lint:fix",
"fmt:check": "pnpm run prettier && pnpm run lint",
"doc": "typedoc src/index.ts --name aave-aptos --out docs/documentation/html --tsconfig tsconfig.json",
"prepare": "husky install"
},
"author": "Avara <info@avara.xyz>",
"contributors": [
"The Avara Team"
],
"license": "(Copyright All Rights Reserved)",
"homepage": "https://github.com/aave/aave-v3-aptos-ts-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/aave/aave-v3-aptos-ts-sdk"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"aptos",
"sdk",
"aave"
],
"files": [
"dist",
"bundle.js",
"bundle.min.js"
],
"dependencies": {
"@aptos-labs/ts-sdk": "^1.33.0",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"events": "^3.3.0",
"jest-environment-jsdom": "^29.7.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"util": "^0.12.5",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"chalk": "^5.3.0",
"eslint": "^9.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-tsdoc": "^0.4.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"node-ts": "^6.1.3",
"npm-run-all": "^4.1.5",
"ora": "^8.1.1",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"prettier-standard": "^16.4.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typedoc": "^0.26.11",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.5"
}
}