mirror of
https://github.com/meshtastic/web.git
synced 2026-04-21 22:40:01 -04:00
* Fix Docker and CI builds * Fix indentation * Fix release --------- Co-authored-by: philon- <philon-@users.noreply.github.com>
31 lines
882 B
JSON
31 lines
882 B
JSON
{
|
|
"name": "@meshtastic/core",
|
|
"version": "2.6.6",
|
|
"description": "Core functionalities 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
|
|
},
|
|
"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": {
|
|
"crc": "npm:crc@^4.3.2"
|
|
}
|
|
} |