Files
web/packages/transport-web-serial/package.json
dependabot[bot] 3a1a29326d chore(deps): bump better-result from 2.9.2 to 2.10.0 (#1321)
Bumps [better-result](https://github.com/dmmulroy/better-result) from 2.9.2 to 2.10.0.
- [Release notes](https://github.com/dmmulroy/better-result/releases)
- [Commits](https://github.com/dmmulroy/better-result/compare/v2.9.2...v2.10.0)

---
updated-dependencies:
- dependency-name: better-result
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-22 12:44:22 -04:00

57 lines
1.3 KiB
JSON

{
"name": "@meshtastic/transport-web-serial",
"version": "1.0.0",
"description": "A transport layer for Meshtastic applications using Web Serial API.",
"license": "GPL-3.0-only",
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
],
"type": "module",
"main": "./dist/mod.js",
"module": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"exports": {
".": "./mod.ts"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepack": "cp ../../LICENSE ./LICENSE",
"clean": "rm -rf dist LICENSE",
"build:npm": "tsdown",
"publish:npm": "pnpm clean && pnpm build:npm && pnpm publish --access public --no-git-checks",
"prepare:jsr": "rm -rf dist && pnpm dlx pkg-to-jsr",
"publish:jsr": "pnpm run prepack && pnpm prepare:jsr && deno publish --allow-dirty --no-check"
},
"dependencies": {
"@meshtastic/sdk": "workspace:*",
"@types/w3c-web-serial": "npm:@types/w3c-web-serial@^1.0.7",
"better-result": "^2.10.0"
},
"tsdown": {
"clean": true,
"dts": true,
"entry": "mod.ts",
"format": [
"esm"
],
"minify": false,
"report": false,
"sourcemap": false,
"splitting": false,
"target": "esnext",
"treeshake": true
},
"jsrExclude": [
"src/**/*.test.ts"
],
"jsrInclude": [
"mod.ts",
"src",
"README.md",
"LICENSE"
]
}