-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "@herd-labs/trails-code-framework",
"version": "1.0.0-alpha.5",
"description": "A package for building Herd-compliant custom Deno scripts used in Herd Trails",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir ./dist --target node",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"build:all": "bun run build && bun run build:types",
"test": "bun test",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"herd",
"trails",
"deno",
"typescript",
"evm",
"ethereum"
],
"author": "Herd Labs <support@herd.com>",
"devDependencies": {
"@tsconfig/strictest": "^2.0.5",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"viem": "^2.30.1",
"zod": "^4.0.5"
},
"dependencies": {
"@hono/zod-validator": "^0.7.1",
"hono": "^4.8.5"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"packageManager": "bun@1.2.14"
}