-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.04 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
{
"name": "@jaw.id/frametx-kit",
"version": "0.2.0",
"description": "Read, build, hash, sign, price, simulate and broadcast EIP-8141 frame transactions as hegota-testnet accepts them.",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"viem": [
"./dist/viem.d.ts"
]
}
},
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./viem": {
"import": {
"types": "./dist/viem.d.ts",
"default": "./dist/viem.js"
},
"require": {
"types": "./dist/viem.d.cts",
"default": "./dist/viem.cjs"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustaLab-co/frametx-kit.git"
},
"bugs": {
"url": "https://github.com/JustaLab-co/frametx-kit/issues"
},
"homepage": "https://github.com/JustaLab-co/frametx-kit#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"LICENSE",
"README.md",
"!**/*.tsbuildinfo"
],
"keywords": [
"ethereum",
"eip-8141",
"frame-transaction",
"frames-devnet",
"ethrex",
"viem",
"rlp"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:live": "FRAMES_LIVE=1 vitest run test/live",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"viem": "^2.21.0"
},
"devDependencies": {
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@types/node": "^20.16.0",
"semantic-release": "^25.0.9",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"viem": "^2.21.0",
"vitest": "^2.1.0"
},
"engines": {
"bun": ">=1.2.0",
"node": ">=20"
}
}