-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "megafuel-js-sdk",
"version": "1.0.7",
"description": "SDK for megafuel product",
"repository": "https://github.com/node-real/megafuel-js-sdk",
"license": "GPL-3.0-or-later",
"keywords": [
"megafuel"
],
"engines": {
"node": ">=16.0.0"
},
"main": "./dist/tsc/index.js",
"types": "./dist/tsc/index.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/index.ts",
"build": "tsc -p tsconfig.json",
"build-all": "yarn clean && yarn build"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.10",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"esbuild": "^0.15.18",
"eslint": "^8.29.0",
"jest": "29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": "^5.0.4"
},
"dependencies": {
"dotenv": "^16.4.5",
"ethers": "^6.13.4"
}
}