-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.43 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.43 KB
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
{
"name": "@dappykit/sdk",
"version": "3.0.1",
"description": "Web3 SDK for DApps",
"main": "dist/index.min.js",
"types": "dist/src/index.d.ts",
"browser": {
"./dist/index.min.js": "./dist/index.browser.min.js",
"data": "data.browser"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "rimraf dist && npm run compile:types && npm run compile:browser --env mode=production && npm run compile:node --env mode=production && cp src/emptyModule.js dist",
"test": "jest --runInBand",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"check:types": "tsc --project tsconfig.test.json",
"compile:node": "webpack --progress --env target=node",
"compile:types": "tsc --emitDeclarationOnly --declaration",
"compile:browser": "webpack --progress --env target=web"
},
"keywords": [
"web3",
"web4",
"socialfi",
"sdk",
"dappykit",
"dapps",
"Optimism",
"EVM",
"eth",
"Ethereum",
"wallet",
"provider",
"signer",
"signing",
"transaction",
"transactions",
"contract",
"account abstraction",
"ERC-4337"
],
"author": "DappyKit",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-transform-class-properties": "^7.25.7",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@types/node-fetch": "^2.6.11",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"glob": "^10.3.10",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.7.2",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"abitype": "^1.0.7",
"permissionless": "^0.2.21",
"viem": "^2.21.22"
},
"engines": {
"node": ">=20"
}
}