forked from Elytro-eth/soulwalletlib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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
{
"name": "@elytro/decoder",
"version": "1.0.0",
"description": "A lib for decode userOp.calldata",
"author": "Jayden@elytro",
"homepage": "https://github.com/SoulWallet/elytro-wallet-lib#readme",
"license": "GPL-3.0",
"main": "./lib.cjs/main.js",
"module": "./lib.esm/main.js",
"types": "./lib.esm/main.d.ts",
"directories": {
"lib": "lib.cjs",
"test": "__tests__"
},
"files": [
"lib.cjs",
"lib.esm"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SoulWallet/elytro-wallet-lib.git"
},
"scripts": {
"typedoc": "typedoc",
"docs": "npx typedoc --tsconfig ./tsconfig.esm.json --plugin typedoc-plugin-markdown typedoc-plugin-missing-exports src/main.ts",
"tsc": "tsc",
"build": "tsc --project ./tsconfig.esm.json;tsc --project ./tsconfig.cjs.json;node ./create-package-json.js",
"javascript-obfuscator": "javascript-obfuscator",
"generateBytes4": "ts-node --project ./tsconfig.dev.json ./src/dev/generateBytes4.ts",
"test": "jest"
},
"bugs": {
"url": "https://github.com/SoulWallet/elytro-wallet-lib/issues"
},
"dependencies": {
"@elytro/abi": "workspace:*",
"@elytro/assets": "workspace:*",
"@elytro/result": "workspace:*",
"ethers": "^6.13.2"
},
"devDependencies": {
"@types/node": "^20.10.7",
"@types/shelljs": "^0.8.12",
"shelljs": "^0.8.5"
},
"exports": {
".": {
"import": "./lib.esm/main.js",
"require": "./lib.cjs/main.js"
}
}
}