mirror of
https://github.com/meshtastic/web.git
synced 2026-01-28 01:12:31 -05:00
* refactor github actions with monorepo support * Update .github/workflows/release-packages.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update .github/workflows/release-packages.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * updates * changed order of ci/pr steps * Update .github/workflows/release-web.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * adding lock file --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
38 lines
1004 B
JSON
38 lines
1004 B
JSON
{
|
|
"name": "@meshtastic/core",
|
|
"version": "2.6.6-1",
|
|
"description": "Core functionalities for Meshtastic web applications.",
|
|
"exports": {
|
|
".": "./mod.ts"
|
|
},
|
|
"type": "module",
|
|
"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 --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": {
|
|
"crc": "npm:crc@^4.3.2"
|
|
}
|
|
} |