mirror of
https://github.com/meshtastic/web.git
synced 2026-04-22 06:48:12 -04:00
* Fix Docker and CI builds * Fix indentation * Fix release --------- Co-authored-by: philon- <philon-@users.noreply.github.com>
39 lines
994 B
JSON
39 lines
994 B
JSON
{
|
|
"name": "@meshtastic/transport-node",
|
|
"version": "0.0.1",
|
|
"description": "NodeJS-specific transport layer for Meshtastic web applications.",
|
|
"exports": {
|
|
".": "./mod.ts"
|
|
},
|
|
"main": "./dist/mod.mjs",
|
|
"module": "./dist/mod.mjs",
|
|
"types": "./dist/mod.d.mts",
|
|
|
|
"license": "GPL-3.0-only",
|
|
"tsdown": {
|
|
"entry": "mod.ts",
|
|
"dts": true,
|
|
"format": ["esm"],
|
|
"splitting": false,
|
|
"clean": true
|
|
},
|
|
"files": [
|
|
"package.json",
|
|
"README.md",
|
|
"LICENSE",
|
|
"dist"
|
|
],
|
|
"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",
|
|
"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/core": "workspace:*"
|
|
}
|
|
}
|