You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
{
|
|
"name": "@meshtastic/transport-web-serial",
|
|
"version": "0.2.4-0",
|
|
"description": "A transport layer for Meshtastic applications using Web Serial API.",
|
|
"exports": {
|
|
".": "./mod.ts"
|
|
},
|
|
"type": "module",
|
|
"main": "./dist/mod.mjs",
|
|
"module": "./dist/mod.mjs",
|
|
"types": "./dist/mod.d.mts",
|
|
"files": [
|
|
"package.json",
|
|
"README.md",
|
|
"LICENSE",
|
|
"dist"
|
|
],
|
|
"license": "GPL-3.0-only",
|
|
"tsdown": {
|
|
"entry": "mod.ts",
|
|
"dts": true,
|
|
"format": [
|
|
"esm"
|
|
],
|
|
"splitting": false,
|
|
"clean": true
|
|
},
|
|
"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": {
|
|
"@types/w3c-web-serial": "npm:@types/w3c-web-serial@^1.0.7",
|
|
"@meshtastic/core": "workspace:*"
|
|
}
|
|
}
|
|
|