generator-pninja 1.0.2 → 1.0.3
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 +15 -16
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -4,21 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
# generator-pninja
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<br>
|
|
10
|
-
Backend + Frontend + Docker + Database — ready in seconds ⚡
|
|
11
|
-
</p>
|
|
7
|
+
Generate a full **Laravel + React + Vite** application from a single **JDL model**.
|
|
8
|
+
Backend + Frontend + Docker + Database — ready in seconds ⚡
|
|
12
9
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
<img alt="Node Support" src="https://img.shields.io/badge/node-%3E%3D22-green">
|
|
19
|
-
<a href="https://snyk.io/test/npm/generator-pninja"><img alt="Known Vulnerabilities" src="https://snyk.io/test/npm/generator-pninja/badge.svg"></a>
|
|
20
|
-
<a href="https://snyk.io/advisor/npm-package/generator-pninja"><img alt="Package Health" src="https://snyk.io/advisor/npm-package/generator-pninja/badge.svg"></a>
|
|
21
|
-
</p>
|
|
10
|
+
[![License][license-badge]][license-url]
|
|
11
|
+
[![npm version][npm-version-badge]][npm-version-url]
|
|
12
|
+
[![Downloads][npmcharts-image]][npmcharts-url]
|
|
13
|
+
[![Known Vulnerabilities][snyk-image]][snyk-url]
|
|
14
|
+
[![GitHub version][gh-image]][gh-url]
|
|
22
15
|
|
|
23
16
|
## License
|
|
24
17
|
|
|
@@ -105,6 +98,12 @@ Fully wired together: auth, routing, forms, CRUD, migrations.
|
|
|
105
98
|
- Authentication improvements ([Laravel Sanctum][sanctum-url] / [OAuth2][oauth2-url])
|
|
106
99
|
- GitHub CI
|
|
107
100
|
|
|
101
|
+
## GitHub Repository
|
|
102
|
+
|
|
103
|
+
The source code for **generator-pninja** is hosted on GitHub. You can access the official repository at the following link:
|
|
104
|
+
|
|
105
|
+
[Generator PNinja GitHub Repository](https://github.com/consiglionazionaledellericerche/generator-pninja)
|
|
106
|
+
|
|
108
107
|
[laravel-url]: https://laravel.com/
|
|
109
108
|
[sqlite-url]: https://www.sqlite.org/
|
|
110
109
|
[mysql-url]: https://www.mysql.com/
|
|
@@ -132,8 +131,6 @@ Fully wired together: auth, routing, forms, CRUD, migrations.
|
|
|
132
131
|
[docker-compose-url]: https://docs.docker.com/compose/
|
|
133
132
|
[license-badge]: https://img.shields.io/badge/License-Apache_2.0-blue.svg
|
|
134
133
|
[license-url]: https://opensource.org/licenses/Apache-2.0
|
|
135
|
-
[github-badge]: https://img.shields.io/badge/GitHub-giatro-181717?logo=github
|
|
136
|
-
[github-url]: https://github.com/giatro
|
|
137
134
|
[npm-version-badge]: https://badge.fury.io/js/generator-pninja.svg
|
|
138
135
|
[npm-version-url]: https://badge.fury.io/js/generator-pninja
|
|
139
136
|
[pninja-logo]: https://www.pninja.tech/assets/pninja_logo.svg
|
|
@@ -144,3 +141,5 @@ Fully wired together: auth, routing, forms, CRUD, migrations.
|
|
|
144
141
|
[health-image]: https://snyk.io/advisor/npm-package/generator-pninja/badge.svg
|
|
145
142
|
[health-url]: https://snyk.io/advisor/npm-package/generator-pninja
|
|
146
143
|
[vite-url]: https://vite.dev/
|
|
144
|
+
[gh-image]: https://badge.fury.io/gh/consiglionazionaledellericerche%2Fgenerator-pninja.svg
|
|
145
|
+
[gh-url]: https://badge.fury.io/gh/consiglionazionaledellericerche%2Fgenerator-pninja
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-pninja",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Generator for PHP/Laravel + SQL + Vite + React applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -21,10 +21,14 @@
|
|
|
21
21
|
"Docker"
|
|
22
22
|
],
|
|
23
23
|
"homepage": "https://www.pninja.tech/",
|
|
24
|
+
"bugs": "https://github.com/consiglionazionaledellericerche/generator-pninja/issues",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git://github.com/consiglionazionaledellericerche/generator-pninja.git"
|
|
28
|
+
},
|
|
24
29
|
"license": "Apache-2.0",
|
|
25
30
|
"author": {
|
|
26
31
|
"name": "Gianluca Troiani",
|
|
27
|
-
"email": "",
|
|
28
32
|
"url": "https://github.com/giatro"
|
|
29
33
|
},
|
|
30
34
|
"dependencies": {
|