prodex 1.0.0 → 1.0.1
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 +7 -23
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -39,7 +39,13 @@ npm install --save-dev prodex
|
|
|
39
39
|
Run directly from your project root:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
prodex
|
|
42
|
+
prodex
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
OR
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npx prodex
|
|
43
49
|
```
|
|
44
50
|
|
|
45
51
|
You’ll be guided through an interactive CLI:
|
|
@@ -159,21 +165,6 @@ prodex --depth 3 --output ./dump.txt --debug
|
|
|
159
165
|
|
|
160
166
|
---
|
|
161
167
|
|
|
162
|
-
## 🧾 Publishing to npm
|
|
163
|
-
|
|
164
|
-
```bash
|
|
165
|
-
# Build and test locally
|
|
166
|
-
npm run build
|
|
167
|
-
|
|
168
|
-
# Version bump
|
|
169
|
-
npm version patch # or minor / major
|
|
170
|
-
|
|
171
|
-
# Log in and publish
|
|
172
|
-
npm login
|
|
173
|
-
npm publish --access public
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
---
|
|
177
168
|
|
|
178
169
|
## 💡 Philosophy
|
|
179
170
|
|
|
@@ -185,13 +176,6 @@ and designed to be both *safe* and *predictable.*
|
|
|
185
176
|
|
|
186
177
|
---
|
|
187
178
|
|
|
188
|
-
## 🧑💻 Maintained by **emxhive**
|
|
189
|
-
|
|
190
|
-
Prodex is part of the **Forge** developer ecosystem by **emxhive**,
|
|
191
|
-
a suite of modular tools for Laravel + React applications.
|
|
192
|
-
|
|
193
|
-
---
|
|
194
|
-
|
|
195
179
|
## 🧾 License
|
|
196
180
|
|
|
197
181
|
MIT © 2025 emxhive
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prodex",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Unified Project Indexer & Dependency Extractor for Laravel + React stacks.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,14 @@
|
|
|
12
12
|
"README.md",
|
|
13
13
|
"LICENSE"
|
|
14
14
|
],
|
|
15
|
-
"keywords": [
|
|
15
|
+
"keywords": [
|
|
16
|
+
"laravel",
|
|
17
|
+
"react",
|
|
18
|
+
"typescript",
|
|
19
|
+
"dependency",
|
|
20
|
+
"analyzer",
|
|
21
|
+
"cli"
|
|
22
|
+
],
|
|
16
23
|
"author": "emxhive",
|
|
17
24
|
"license": "MIT"
|
|
18
25
|
}
|