-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.64 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
{
"name": "@eclesia/atomone-indexer",
"version": "2.1.3",
"description": "",
"type": "module",
"scripts": {
"build": "tsc --noEmit && tsdown && pnpm postbuild",
"create-migration": "node ./scripts/create-migration.js",
"postbuild": "copyfiles -u 1 \"src/**/*.sql\" dist",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"bin": {
"ts-indexer": "./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@atomone/atomone-types": "^1.0.3",
"@cosmjs/proto-signing": "^0.36.0",
"@cosmjs/stargate": "^0.36.0",
"@cosmjs/tendermint-rpc": "^0.36.0",
"@eclesia/basic-pg-indexer": "^2.14.1",
"@eclesia/core-modules-pg": "^2.14.3",
"@eclesia/indexer-engine": "^2.14.2",
"bignumber.js": "^9.3.1",
"json-with-bigint": "^3.4.4",
"pg": "^8.16.3"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@eslint/js": "^9.35.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/json-bigint": "^1.0.4",
"@types/node": "^22.7.5",
"@types/pg": "^8.15.5",
"copyfiles": "^2.4.1",
"eslint": "^9.35.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"tsdown": "^0.15.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
}
}