-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 KB
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
{
"name": "webmax",
"version": "0.2.0",
"description": "webmax js library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:InternetMaximalism/webmax.js.git",
"author": "Kazuki Kasahara <[email protected]>",
"license": "MIT",
"keywords": [
"intmax",
"js",
"blockchain",
"crypto",
"intmaxwallet"
],
"bugs": {
"url": "https://github.com/InternetMaximalism/webmax.js/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/InternetMaximalism/webmax.js#readme",
"devDependencies": {
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"ethers": "^5.7.2",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"compile": "tsc -p ./tsconfig.json",
"prebuild": "rimraf dist",
"build": "tsc",
"dev": "npm run compile",
"lint": "eslint --ext .js,.ts src/",
"fix": "npm run lint --fix"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"bignumber.js": "^9.1.0",
"ethers": "^5.7.2",
"starknet": "^4.22.0",
"zksync-web3": "^0.14.3"
}
}