-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
81 lines (81 loc) · 2.47 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
{
"name": "biconomy-sdk",
"version": "1.0.0",
"description": "SDK for Biconomy integration with support for account abstraction, smart accounts, ERC-4337.",
"keywords": [
"biconomy",
"sdk",
"blockchain",
"integration",
"account abstraction",
"smart accounts",
"erc-4337",
"crosschain",
"cross-chain",
"metatransactions"
],
"license": "MIT",
"homepage": "https://biconomy.io/docs",
"bugs": {
"url": "https://github.com/bcnmy/biconomy-client-sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bcnmy/biconomy-client-sdk"
},
"author": "Biconomy (https://biconomy.io)",
"private": true,
"scripts": {
"build": "lerna run build",
"clean": "lerna clean && lerna run unbuild",
"format": "lerna run format --npm-client=yarn",
"prettier": "npx prettier --write .",
"lint": "eslint -c .eslintrc.js 'packages/*/src/**/*.{ts,tsx}'",
"lint:fix": "eslint -c .eslintrc.js 'packages/*/src/**/*.{ts,tsx}' --fix",
"test:run": "yarn jest --runInBand",
"test": "concurrently -k --success first 'yarn start:ganache' 'yarn test:run'",
"start:ganache": "ganache -m 'direct buyer cliff train rice spirit census refuse glare expire innocent quote'",
"test:ci": "FORCE_COLOR=1 lerna run test:ci --stream --npm-client=yarn",
"test:coverage": "concurrently -k --success first 'yarn start:ganache' 'yarn jest --runInBand --coverage'",
"diff": "lerna diff",
"release": "lerna version patch --no-git-tag-version --no-push --conventional-commits --yes"
},
"changelog": {
"labels": {
"feature": "New Feature",
"bug": "Bug Fix"
}
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"node-gyp": "^9.4.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"ganache": "^7.9.1",
"@types/debug": "^4.1.9",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-security": "^1.7.1",
"hardhat": "^2.17.3",
"jest": "^29.7.0",
"lerna": "^7.2.0",
"lerna-changelog": "^2.2.0",
"nx": "^16.8.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}