-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "platrust-wallet-js-sdk",
"version": "v1.0.1",
"description": "The EIP-4337 library for platrust-Wallet",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/app.ts",
"build": "rm -rf dist && tsc --project tsconfig.json",
"test": "mocha",
"docs": "npx typedoc --plugin typedoc-plugin-markdown --entryPoints ./src/index.ts --out ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PlatONnetwork/platrust-wallet-js-sdk.git"
},
"keywords": [
"AA",
"wallet",
"contract",
"EIP4337"
],
"author": "steven",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/PlatONnetwork/platrust-wallet-js-sdk/issues"
},
"homepage": "https://github.com/PlatONnetwork/platrust-wallet-js-sdk",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.1",
"@types/node-fetch": "^2.6.3",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.15.3",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"dotenv": "8.6.0",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.1",
"node-fetch": "^3.3.1"
}
}