@sm-lab/receipts 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@sm-lab/receipts",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Versioned Lido SM anvil/deploy receipts — typed, importable contract addresses & ABIs",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/exromany/sm-lab.git",
10
+ "directory": "fixtures/receipts"
11
+ },
12
+ "keywords": [
13
+ "csm",
14
+ "lido",
15
+ "anvil",
16
+ "deploy",
17
+ "receipts",
18
+ "fixtures",
19
+ "testing"
20
+ ],
21
+ "types": "./dist/index.d.mts",
22
+ "exports": {
23
+ ".": {
24
+ "types": "./dist/index.d.mts",
25
+ "import": "./dist/index.mjs",
26
+ "require": {
27
+ "types": "./dist/index.d.cts",
28
+ "default": "./dist/index.cjs"
29
+ }
30
+ },
31
+ "./data/*": "./data/*"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "data",
36
+ "README.md"
37
+ ],
38
+ "devDependencies": {
39
+ "dotenv": "^17.4.2",
40
+ "tsdown": "^0.22.3",
41
+ "tsx": "^4.19.0",
42
+ "typescript": "^6.0.3",
43
+ "viem": "~2.53.1",
44
+ "vitest": "^4.1.9",
45
+ "@types/node": "^26.1.0",
46
+ "@sm-lab/config": "0.0.0"
47
+ },
48
+ "engines": {
49
+ "node": ">=24"
50
+ },
51
+ "scripts": {
52
+ "build": "tsdown",
53
+ "dev": "tsdown --watch",
54
+ "test": "vitest run",
55
+ "types": "tsc --noEmit",
56
+ "refresh": "node --import tsx scripts/refresh.ts"
57
+ }
58
+ }