@smartsoft001/angular-stack 2.142.0

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +11 -0
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @smartsoft001/angular-stack
2
+
3
+ One install for an Angular application. Pulls `@smartsoft001/core` plus the UI library and the CRUD screens.
4
+
5
+ ```bash
6
+ npm install @smartsoft001/angular-stack
7
+ ```
8
+
9
+ This package ships no code of its own. It pins one version of each package below, so a project
10
+ installs the whole set at a single version instead of resolving them one by one:
11
+
12
+ - [`@smartsoft001/core`](https://www.npmjs.com/package/@smartsoft001/core)
13
+ - [`@smartsoft001/angular`](https://www.npmjs.com/package/@smartsoft001/angular)
14
+ - [`@smartsoft001/crud-shell-angular`](https://www.npmjs.com/package/@smartsoft001/crud-shell-angular)
15
+
16
+ The full documentation is at https://emiljuchnikowski.github.io/smartsoft001/docs/installation/.
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@smartsoft001/angular-stack",
3
+ "version": "2.142.0",
4
+ "description": "Everything an Angular application needs from @smartsoft001: the core packages, the UI library and the CRUD screens.",
5
+ "license": "MIT",
6
+ "dependencies": {
7
+ "@smartsoft001/core": "2.142.0",
8
+ "@smartsoft001/angular": "2.142.0",
9
+ "@smartsoft001/crud-shell-angular": "2.142.0"
10
+ }
11
+ }