mirror of
https://github.com/meshtastic/web.git
synced 2026-07-31 06:56:28 -04:00
Bumps the react-ecosystem group with 2 updates in the / directory: [react](https://github.com/react/react/tree/HEAD/packages/react) and [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom). Updates `react` from 19.2.7 to 19.2.8 - [Release notes](https://github.com/react/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/react/react/commits/v19.2.8/packages/react) Updates `react-dom` from 19.2.7 to 19.2.8 - [Release notes](https://github.com/react/react/releases) - [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom) --- updated-dependencies: - dependency-name: react dependency-version: 19.2.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: react-ecosystem - dependency-name: react-dom dependency-version: 19.2.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: react-ecosystem ... Signed-off-by: dependabot[bot] <support@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.",
|
|
"license": "GPL-3.0-only",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/meshtastic/web.git",
|
|
"directory": "packages/sdk-react"
|
|
},
|
|
"files": [
|
|
"package.json",
|
|
"README.md",
|
|
"LICENSE",
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"main": "./dist/mod.js",
|
|
"module": "./dist/mod.js",
|
|
"types": "./dist/mod.d.ts",
|
|
"exports": {
|
|
".": "./mod.ts"
|
|
},
|
|
"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.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react": "^16.0.0",
|
|
"@types/react": "^19.2.17",
|
|
"jsdom": "^29.1.1",
|
|
"react": "^19.2.8",
|
|
"react-dom": "^19.2.8"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18 || ^19"
|
|
},
|
|
"tsdown": {
|
|
"clean": true,
|
|
"dts": true,
|
|
"entry": "mod.ts",
|
|
"format": [
|
|
"esm"
|
|
],
|
|
"minify": false,
|
|
"platform": "neutral",
|
|
"report": false,
|
|
"sourcemap": false,
|
|
"splitting": false,
|
|
"target": "esnext",
|
|
"treeshake": true
|
|
},
|
|
"jsrExclude": [
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx",
|
|
"tests"
|
|
],
|
|
"jsrInclude": [
|
|
"mod.ts",
|
|
"src",
|
|
"README.md",
|
|
"LICENSE"
|
|
]
|
|
}
|