UNPKG

@herd-labs/trails-code-framework

Version:

A package for building Herd-compliant custom Deno scripts used in Herd Trails

54 lines (53 loc) 1.37 kB
{ "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" }