-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
90 lines (90 loc) · 2.69 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
{
"name": "@martiandao/aptos-web3-bip44.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 .",
"publish_module": "npm run build && npm publish --public",
"lint": "eslint \"src/wallet_client.test.ts\" \"src/wallet_client.ts\"",
"test": "jest -- src/wallet_client.test.ts",
"_fmt": "prettier 'src/wallet_client.test.ts' 'src/wallet_client.ts' '.eslintrc.js'",
"fmt": "yarn _fmt --write",
"fmt:check": "yarn _fmt --check",
"cov:clean": "rm -rf coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/martian-dao/aptos-web3.js"
},
"pre-commit": [
"lint",
"fmt:check"
],
"keywords": [
"MartianDAO",
"Aptos",
"Aptos SDK",
"Aptos Web3",
"Aptos Labs"
],
"devDependencies": {
"@graphql-codegen/cli": "^2.13.5",
"@graphql-codegen/import-types-preset": "^2.2.3",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-graphql-request": "^4.5.8",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@types/bip32": "^2.0.0",
"@types/jest": "28.1.8",
"@types/node": "18.6.2",
"@types/node-fetch": "^2.6.1",
"@types/tiny-secp256k1": "^2.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"dotenv": "16.0.2",
"eslint": "8.23.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"graphql": "^16.5.0",
"graphql-request": "^5.1.0",
"jest": "28.1.3",
"lint-staged": "^13.0.3",
"node-fetch": "^2.6.7",
"openapi-typescript-codegen": "https://github.com/aptos-labs/openapi-typescript-codegen/releases/download/v0.24.0-p1/openapi-typescript-codegen-v0.24.0-p1.tgz",
"prettier": "2.6.2",
"ts-jest": "28.0.8",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tsup": "6.2.3",
"typedoc": "^0.23.20",
"typedoc-plugin-markdown": "3.13.4",
"typescript": "4.8.2"
},
"dependencies": {
"@microsoft/eslint-formatter-sarif": "2.1.7",
"@noble/hashes": "^1.1.2",
"@scure/bip32": "1.0.1",
"@scure/bip39": "1.0.0",
"axios": "^0.26.1",
"brfs": "2.0.2",
"buffer": "6.0.3",
"cross-fetch": "3.1.5",
"ed25519-hd-key": "1.3.0",
"form-data": "4.0.0",
"graphql": "16.5.0",
"graphql-request": "5.1.0",
"isomorphic-fetch": "3.0.0",
"js-sha3": "0.8.0",
"node-cache": "5.1.2",
"pre-commit": "1.2.2",
"tweetnacl": "1.0.3",
"typescript-memoize": "1.1.0"
},
"version": "2.0.2"
}