stackpack-cli 0.3.0 → 0.3.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 +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,28 @@ stackpack
|
|
|
28
28
|
|
|
29
29
|
Open a terminal in any folder, type `stackpack`, and the interactive menu takes it from there — create a project, pick integrations, review the plan, install.
|
|
30
30
|
|
|
31
|
+
## Uninstall
|
|
32
|
+
|
|
33
|
+
If you installed StackPack globally and no longer want it:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npm uninstall -g stackpack-cli
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
That removes the `stackpack` command from your system. (If you only ever used `npx stackpack-cli`, there is nothing to uninstall — npx leaves nothing installed.)
|
|
40
|
+
|
|
41
|
+
StackPack also keeps your saved presets in a small local folder. If you want a complete cleanup, delete it too:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
# Windows
|
|
45
|
+
rmdir /s /q "%USERPROFILE%\.stackpack"
|
|
46
|
+
|
|
47
|
+
# macOS / Linux
|
|
48
|
+
rm -rf ~/.stackpack
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Projects you created with StackPack are never touched by uninstalling — they are normal projects that belong entirely to you.
|
|
52
|
+
|
|
31
53
|
## How it works
|
|
32
54
|
|
|
33
55
|
StackPack creates projects with the **official** tools (`create-vite`, `create-next-app`), then opens a category-based integration dashboard where you pick routing, state management, data fetching, forms, UI components, ORMs, testing, and custom packages. Everything is reviewed as one installation plan before a single package is installed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stackpack-cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Local-first, privacy-focused terminal integration builder for JavaScript and TypeScript projects. Official tooling first, presets stay on your device.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|