-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.4 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
{
"name": "abstractionkit",
"author": {
"name": "Candidelabs",
"url": "https://candide.dev"
},
"version": "0.2.3",
"description": "Account Abstraction 4337 SDK by Candidelabs",
"main": "dist/index.js",
"module": "dist/index.m.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && microbundle --tsconfig tsconfig.json --no-sourcemap",
"clean": "rimraf dist",
"format": "prettier --write src/*.ts src/**/*.ts src/**/**/*.ts",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/candidelabs/abstractionkit.git"
},
"files": [
"dist"
],
"keywords": [
"Account Abstraction",
"4337",
"Useroperation",
"Bundler",
"Paymaster",
"Entrypoint",
"SDK"
],
"license": "MIT",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"dependencies": {
"ethers": "^6.13.2",
"isomorphic-unfetch": "^3.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"dotenv": "^16.4.5",
"eslint": "^8.46.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"lint-staged": ">=10",
"microbundle": "^0.15.1",
"prettier": "3.0.0",
"typescript": "^5.1.6",
"rimraf": "^6.0.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.--write": "prettier --ignore-unknown --write"
}
}