forked from bcnmy/biconomy-client-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.63 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"type": "module",
"main": "./dist/_cjs/index.js",
"module": "./dist/_esm/index.js",
"types": "./dist/_types/index.d.ts",
"typings": "./dist/_types/index.d.ts",
"homepage": "https://biconomy.io",
"sideEffects": false,
"name": "@biconomy/account",
"author": "Biconomy",
"version": "4.6.2",
"description": "SDK for Biconomy integration with support for account abstraction, smart accounts, ERC-4337.",
"keywords": [
"erc-7579",
"modular smart account",
"account abstraction",
"biconomy",
"sdk"
],
"license": "MIT",
"repository": "github:bcnmy/biconomy-client-sdk",
"exports": {
".": {
"types": "./dist/_types/index.d.ts",
"import": "./dist/_esm/index.js",
"default": "./dist/_cjs/index.js"
},
"./account": {
"types": "./_types/account/index.d.ts",
"import": "./_esm/account/index.js",
"default": "./_cjs/account/index.js"
},
"./bundler": {
"types": "./_types/bundler/index.d.ts",
"import": "./_esm/bundler/index.js",
"default": "./_cjs/bundler/index.js"
},
"./paymaster": {
"types": "./_types/paymaster/index.d.ts",
"import": "./_esm/paymaster/index.js",
"default": "./_cjs/paymaster/index.js"
},
"./modules": {
"types": "./_types/modules/index.d.ts",
"import": "./_esm/modules/index.js",
"default": "./_cjs/modules/index.js"
}
},
"files": [
"dist/*",
"README.md"
],
"scripts": {
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "bun run lint --apply",
"dev": "bun link && concurrently \"bun run esm:watch\" \"bun run cjs:watch\" \"bun run types:watch\" \"bun run esm:watch:aliases\" \"bun run cjs:watch:aliases\" \"bun run types:watch:aliases\"",
"build": "bun run clean && bun run build:cjs && bun run build:esm && bun run build:types",
"clean": "rimraf ./dist/_esm ./dist/_cjs ./dist/_types ./dist/tsconfig",
"test": "vitest dev -c ./tests/vitest.config.ts",
"playground": "bun run test -t=Playground --watch",
"test:readOnly": "bun run test read",
"test:watch": "bun run test --watch",
"test:watch:readOnly": "bun run test:readOnly --watch",
"test:coverage": "CI=true vitest -c ./tests/vitest.config.ts --coverage",
"test:ci": "CI=true vitest -c ./tests/vitest.config.ts",
"size": "size-limit",
"docs": "typedoc --tsconfig ./tsconfig/tsconfig.esm.json",
"docs:deploy": "bun run docs && gh-pages -d docs",
"changeset": "changeset",
"changeset:release": "bun run build && changeset publish",
"changeset:version": "changeset version && bun install --lockfile-only",
"esm:watch": "tsc --project ./tsconfig/tsconfig.esm.json --watch",
"cjs:watch": "tsc --project ./tsconfig/tsconfig.cjs.json --watch",
"types:watch": "tsc --project ./tsconfig/tsconfig.types.json --watch",
"esm:watch:aliases": "tsc-alias -p ./tsconfig/tsconfig.esm.json --watch",
"cjs:watch:aliases": "tsc-alias -p ./tsconfig/tsconfig.cjs.json --watch",
"types:watch:aliases": "tsc-alias -p ./tsconfig/tsconfig.types.json --watch",
"build:cjs": "tsc --project ./tsconfig/tsconfig.cjs.json && tsc-alias -p ./tsconfig/tsconfig.cjs.json && echo > ./dist/_cjs/package.json '{\"type\":\"commonjs\"}'",
"build:esm": "tsc --project ./tsconfig/tsconfig.esm.json && tsc-alias -p ./tsconfig/tsconfig.esm.json && echo > ./dist/_esm/package.json '{\"type\": \"module\",\"sideEffects\":false}'",
"build:types": "tsc --project ./tsconfig/tsconfig.types.json && tsc-alias -p ./tsconfig/tsconfig.types.json"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/wallet": "^5.7.0",
"@size-limit/esbuild-why": "^11",
"@size-limit/preset-small-lib": "^11",
"@types/bun": "latest",
"@vitest/coverage-v8": "^1.3.1",
"buffer": "^6.0.3",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"ethers": "^6.12.0",
"gh-pages": "^6.1.1",
"node-gyp-build": "^4.8.1",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"size-limit": "^11",
"tsc-alias": "^1.8.8",
"tslib": "^2.6.2",
"typedoc": "^0.25.9",
"vitest": "^1.3.1"
},
"peerDependencies": {
"typescript": "^5.5.3",
"viem": "^2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "bun run format && bun run lint:fix",
"commit-msg": "npx --no -- commitlint --edit ${1}"
},
"dependencies": {
"merkletreejs": "^0.4.0"
}
}