react-brain 0.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/cli.mjs +3 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# react-brain
|
|
2
|
+
|
|
3
|
+
Official alias for [**@heart-it/react-brain**](https://www.npmjs.com/package/@heart-it/react-brain) —
|
|
4
|
+
engineering decisions for React & React Native, with receipts. This package exists so the short
|
|
5
|
+
command works; the canonical package, versioning, and README live at the scoped name.
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npx -y react-brain doctor . # assess a repo, ranked priorities
|
|
9
|
+
npx -y react-brain migrate . # sequenced upgrade plan
|
|
10
|
+
npx -y react-brain review . --ci # block dead/deprecated deps in CI
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Site: <https://heart-it.github.io/react-brain/> · Repo: <https://github.com/heart-IT/react-brain>
|
package/cli.mjs
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-brain",
|
|
3
|
+
"version": "0.7.5",
|
|
4
|
+
"description": "Official alias for @heart-it/react-brain — engineering decisions for React & React Native, with receipts. Same CLI: doctor, migrate, review, stack, bench, mcp.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": { "react-brain": "cli.mjs" },
|
|
7
|
+
"files": ["cli.mjs", "README.md"],
|
|
8
|
+
"dependencies": { "@heart-it/react-brain": "^0.7.5" },
|
|
9
|
+
"homepage": "https://heart-it.github.io/react-brain/",
|
|
10
|
+
"repository": { "type": "git", "url": "git+https://github.com/heart-IT/react-brain.git", "directory": "alias" },
|
|
11
|
+
"bugs": "https://github.com/heart-IT/react-brain/issues",
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"keywords": ["react", "react-native", "expo", "developer-tools", "cli", "mcp", "mcp-server", "knowledge-base", "dependencies", "migration"]
|
|
14
|
+
}
|