@str-public/installer 0.4.3 → 0.4.4
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 +12 -0
- package/dist/cli.js +0 -0
- package/package.json +11 -6
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Stronghold Systems Installer
|
|
2
|
+
|
|
3
|
+
`@str-public/installer` is the public CLI installer for Stronghold Systems developer tooling.
|
|
4
|
+
|
|
5
|
+
The package exposes the `str-install` command and provides an interactive setup flow available packages
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
What the installer does:
|
|
9
|
+
|
|
10
|
+
- downloads and installs selected public packages from npm
|
|
11
|
+
|
|
12
|
+
The installer is intended for guided setup of Stronghold Systems local developer environment assets.
|
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@str-public/installer",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Stronghold Systems CLI Installer",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/Stronghold-Systems/str-armory.git",
|
|
9
|
+
"directory": "str-public/packages/installer"
|
|
10
|
+
},
|
|
6
11
|
"bin": {
|
|
7
12
|
"str-install": "dist/cli.js"
|
|
8
13
|
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "tsc",
|
|
11
|
-
"test": "echo \"No tests yet\""
|
|
12
|
-
},
|
|
13
14
|
"files": [
|
|
14
15
|
"dist"
|
|
15
16
|
],
|
|
@@ -23,5 +24,9 @@
|
|
|
23
24
|
"devDependencies": {
|
|
24
25
|
"typescript": "^5.7.0",
|
|
25
26
|
"@types/node": "^22.0.0"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc",
|
|
30
|
+
"test": "echo \"No tests yet\""
|
|
26
31
|
}
|
|
27
|
-
}
|
|
32
|
+
}
|