-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "@citizenwallet/sdk",
"version": "1.2.49",
"description": "An sdk to easily work with your community server.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/citizenwallet/sdk.git"
},
"bugs": {
"url": "https://github.com/citizenwallet/sdk/issues"
},
"scripts": {
"build": "rimraf dist && tsc",
"watch": "tsc-watch --onSuccess \"tsc\"",
"pretest": "cp -a node_modules/smartcontracts/cache .",
"test": "npx hardhat test test/hardhat/* && npx jest test/jest/*",
"test-hardhat": "npx hardhat test test/hardhat/*",
"test-jest": "npx jest test/jest/*",
"test-jest-watch": "npx jest --watch test/jest/*",
"manual-publish": "npm publish --access public"
},
"keywords": [
"web3",
"sdk",
"4337",
"erc4337",
"account abstraction",
"wallet",
"tokens",
"erc20",
"userop",
"iou"
],
"author": "Kevin Sundar Raj",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@account-abstraction/contracts": "^0.6.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^3.0.3",
"@openzeppelin/test-helpers": "^0.5.16",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@types/react": "^18.2.57",
"dotenv": "^16.4.5",
"hardhat": "^2.20.1",
"jest": "^29.7.0",
"nock": "^13.5.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"ethers": "^6.11.1",
"fflate": "^0.8.2",
"react": "^18.2.0",
"smartcontracts": "github:citizenwallet/smartcontracts#v0.0.110",
"zustand": "^4.5.2"
}
}