-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 773 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 773 Bytes
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
{
"name": "allegedly",
"type": "module",
"version": "0.0.1-alpha.0",
"module": "src/index.ts",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.28.1",
"@ethereumjs/evm": "^3.1.1",
"@size-limit/preset-small-lib": "^11.2.0",
"@types/bun": "^1.2.4",
"mitata": "^1.0.34",
"size-limit": "^11.2.0"
},
"peerDependencies": {
"abitype": "^1.0.8",
"typescript": "^5.8.2",
"viem": "^2.23.5"
},
"files": ["dist"],
"scripts": {
"format": "biome format . --write",
"lint": "biome lint . --write",
"build": "bun build src/index.ts --outdir dist"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "20 kB"
}
],
"dependencies": {
"picocolors": "^1.1.1"
}
}