-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.58 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.58 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
{
"name": "ethereum-indexer-ts",
"version": "0.1.0",
"description": "Ethereum indexer (TypeScript)",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"prepare": "tsc",
"start-example": "tsx watch examples/basic.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"publish:dry-run": "npm publish --dry-run",
"test": "vitest",
"test-debug": "vitest --inspect-brk --no-file-parallelism",
"test-coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igorcrevar/eth-indexer-ts.git"
},
"bugs": {
"url": "https://github.com/igorcrevar/eth-indexer-ts/issues"
},
"homepage": "https://github.com/igorcrevar/eth-indexer-ts#readme",
"keywords": [
"ethereum",
"indexer",
"logs",
"blockchain",
"event-indexing",
"typescript"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "MIT",
"dependencies": {
"better-sqlite3": "^12.6.2",
"ethers": "^6.16.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.0.18",
"dotenv": "^17.3.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
]
}