-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1008 Bytes
/
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
{
"name": "ponder-entrypoint",
"version": "1.0.0",
"description": "Ponder backend for EntryPoint contracts",
"author": {
"name": "Timur Badretdinov",
"github": "https://github.com/Destiner"
},
"keywords": [
"ponder",
"ethereum",
"evm",
"entrypoint",
"account-abstraction"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/scope-sh/ponder-entrypoint.git"
},
"type": "module",
"scripts": {
"dev": "ponder dev",
"start": "ponder start",
"codegen": "ponder codegen",
"lint": "bun run lint:prettier && bun run lint:eslint",
"lint:prettier": "prettier -c \"src/**/*.ts\"",
"lint:eslint": "eslint \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ponder/core": "^0.3.3",
"viem": "^2.8.11"
},
"devDependencies": {
"@types/node": "^20.9.0",
"eslint": "^8.53.0",
"eslint-config-ponder": "^0.3.3",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
}
}