forked from martian-dao/aptos-web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "@martiandao/aptos-web3.js",
"description": "Web3 SDK For Aptos",
"engines": {
"node": ">=11.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p .",
"lint": "eslint \"**/*.ts\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/martian-dao/aptos-web3.js"
},
"keywords": [
"MarianDAO",
"Aptos",
"Aptos SDK",
"Aptos Web3",
"Aptos Labs"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cross-fetch": "^3.1.5",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"node-fetch": "^2.6.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@scure/bip39": "^1.0.0",
"axios": "^0.26.1",
"buffer": "^6.0.3",
"js-sha3": "^0.8.0",
"tweetnacl": "^1.0.3"
},
"version": "2.0.5"
}