-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.59 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
91
92
93
{
"name": "@etherspot/modular-sdk",
"version": "2.0.8",
"description": "Etherspot Modular SDK - build with ERC-7579 smart accounts modules",
"keywords": [
"ether",
"ethereum",
"sdk",
"layer2",
"blockchain",
"account abstraction",
"4337",
"etherspot",
"ERC-4337",
"ERC-7579",
"smart modules"
],
"license": "MIT",
"homepage": "https://etherspot.io",
"main": "./dist/node.js",
"browser": {
"./dist/browser.js": "./dist/browser.js",
"child_process": false
},
"types": "./dist/index.d.ts",
"scripts": {
"start": "exit 1",
"01-get-address": "./node_modules/.bin/ts-node ./examples/01-get-address",
"02-transfer-funds": "./node_modules/.bin/ts-node ./examples/02-transfer-funds",
"03-transfer-erc20": "./node_modules/.bin/ts-node ./examples/03-transfer-erc20",
"03-transfer-erc20-session-key": "./node_modules/.bin/ts-node ./examples/03-transfer-erc20-session-key",
"04-transfer-nft": "./node_modules/.bin/ts-node ./examples/04-transfer-nft",
"05-add-guardians": "./node_modules/.bin/ts-node ./examples/05-add-guardians",
"06-paymaster": "./node_modules/.bin/ts-node ./examples/06-paymaster",
"07-callGasLimit": "./node_modules/.bin/ts-node ./examples/07-callGasLimit",
"08-get-multiple-accounts": "./node_modules/.bin/ts-node ./examples/08-get-multiple-accounts",
"09-concurrent-userops": "./node_modules/.bin/ts-node ./examples/09-concurrent-userops",
"11-install-module": "./node_modules/.bin/ts-node ./examples/11-install-module",
"12-uninstall-module": "./node_modules/.bin/ts-node ./examples/12-uninstall-module",
"13-enable-sessionkey-module": "./node_modules/.bin/ts-node ./examples/13-enable-sessionkey-module",
"14-rotate-sessionkey-module": "./node_modules/.bin/ts-node ./examples/14-rotate-sessionkey-module",
"15-disable-sessionkey-module": "./node_modules/.bin/ts-node ./examples/15-disable-sessionkey-module",
"format": "prettier --write \"{src,test,examples}/**/*.ts\"",
"lint": "eslint \"{src,test,examples}/**/*.ts\"",
"lint-fix": "npm run lint -- --fix",
"prebuild": "rimraf ./dist",
"build": "npm run compile",
"compile": "tsc -p ./tsconfig.build.json",
"compile-watch": "npm run compile -- --watch",
"init": "ts-node examples/scripts/init.ts",
"command": "ts-node examples/scripts/commands/index.ts",
"predocs:build": "rimraf ./docs",
"docs:build": "typedoc ./src",
"postdocs:build": "cp -r ./.github-pages/files/* ./docs && date > ./docs/.nojekyll",
"docs:deploy": "gh-pages -d ./docs -b master -r [email protected]:etherspot/sdk.etherspot.io.git"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etherspot/etherspot-modular-sdk.git"
},
"bugs": {
"url": "https://github.com/etherspot/etherspot-modular-sdk/issues"
},
"dependencies": {
"@lifi/sdk": "2.5.0",
"@thehubbleproject/bls": "0.5.1",
"@walletconnect/universal-provider": "2.10.0",
"buffer": "^6.0.3",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"commander": "10.0.1",
"cross-fetch": "3.1.8",
"ethers": "5.7.2",
"prettier": "2.8.8",
"reflect-metadata": "0.1.14",
"rxjs": "6.6.7",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "18.11.9",
"@types/prettier": "2.7.3",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"dotenv": "16.0.3",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"npm": "9.6.4",
"ts-node": "10.9.1",
"typedoc": "^0.17.8",
"typescript": "5.5.3"
}
}