mirror of
https://github.com/meshtastic/web.git
synced 2026-07-31 06:56:28 -04:00
Bumps [better-result](https://github.com/dmmulroy/better-result) from 1.0.1 to 2.9.2. - [Release notes](https://github.com/dmmulroy/better-result/releases) - [Commits](https://github.com/dmmulroy/better-result/compare/v1.0.1...v2.9.2) --- updated-dependencies: - dependency-name: better-result dependency-version: 2.9.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
73 lines
1.6 KiB
JSON
73 lines
1.6 KiB
JSON
{
|
|
"name": "@meshtastic/sdk-react",
|
|
"version": "1.0.0",
|
|
"description": "React hooks + provider for @meshtastic/sdk. Signal-backed reactive state exposed as idiomatic hooks.",
|
|
"exports": {
|
|
".": "./mod.ts"
|
|
},
|
|
"type": "module",
|
|
"main": "./dist/mod.js",
|
|
"module": "./dist/mod.js",
|
|
"types": "./dist/mod.d.ts",
|
|
"license": "GPL-3.0-only",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/meshtastic/web.git",
|
|
"directory": "packages/sdk-react"
|
|
},
|
|
"tsdown": {
|
|
"entry": "mod.ts",
|
|
"platform": "neutral",
|
|
"target": "esnext",
|
|
"dts": true,
|
|
"format": [
|
|
"esm"
|
|
],
|
|
"splitting": false,
|
|
"sourcemap": false,
|
|
"minify": false,
|
|
"treeshake": true,
|
|
"report": false,
|
|
"clean": true
|
|
},
|
|
"jsrInclude": [
|
|
"mod.ts",
|
|
"src",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"jsrExclude": [
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx",
|
|
"tests"
|
|
],
|
|
"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",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@meshtastic/sdk": "workspace:*",
|
|
"better-result": "^2.9.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18 || ^19"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^16.0.0",
|
|
"@types/react": "^19.2.17",
|
|
"jsdom": "^29.1.1",
|
|
"react": "^19.2.7",
|
|
"react-dom": "^19.2.7"
|
|
}
|
|
}
|