-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.68 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.68 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@3loop/transaction-decoder",
"version": "0.24.3",
"description": "A library for decoding Ethereum transactions",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"license": "GPL-3.0-only",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./in-memory": {
"import": {
"types": "./dist/in-memory/index.d.ts",
"default": "./dist/in-memory/index.js"
},
"require": {
"types": "./dist/in-memory/index.d.cts",
"default": "./dist/in-memory/index.cjs"
},
"types": "./dist/in-memory/index.d.ts",
"default": "./dist/in-memory/index.js"
},
"./sql": {
"import": {
"types": "./dist/sql/index.d.ts",
"default": "./dist/sql/index.js"
},
"require": {
"types": "./dist/sql/index.d.cts",
"default": "./dist/sql/index.cjs"
},
"types": "./dist/sql/index.d.ts",
"default": "./dist/sql/index.js"
}
},
"scripts": {
"dev": "tsup --watch",
"coverage": "vitest run --config ./vitest.config.mts --coverage",
"build": "rm -rf dist && tsup",
"check": "tsc --noEmit",
"lint": "eslint --exit-on-fatal-error --ignore-path .eslintignore --ext .ts .",
"fix": "eslint --ignore-path .eslintignore --ext .ts . --fix",
"test": "vitest run --config ./vitest.config.mts",
"test:watch": "vitest run --config ./vitest.config.mts --watch",
"gen:mock": "node test/mocks/create-mock.js"
},
"files": [
"dist/**/*",
"src/**/*",
"README.md"
],
"peerDependencies": {
"@effect/sql": "^0.18.16",
"effect": "^3.10.18",
"quickjs-emscripten": "^0.29.1",
"viem": "^2.7.22"
},
"peerDependenciesMeta": {
"@effect/sql": {
"optional": true
}
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.16.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "0.34.2",
"effect": "^3.10.18",
"eslint": "^8.57.0",
"eslint-config-custom": "workspace:*",
"eslint-config-prettier": "^8.10.0",
"glob": "^11.0.0",
"prettier": "^2.8.8",
"quickjs-emscripten": "^0.29.2",
"ts-node": "^10.9.2",
"tsconfig": "workspace:*",
"tsup": "^7.2.0",
"typescript": "5.1.3",
"viem": "^2.21.1",
"vite": "4.4.9",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.34.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.16"
},
"sideEffects": false,
"dependencies": {
"@shazow/whatsabi": "^0.18.0"
}
}