create-node-advance-app 2.0.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.
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "create-node-advance-app",
3
+ "version": "2.0.0",
4
+ "description": "Production-ready Node.js backend generator CLI with TypeScript support and best practices",
5
+ "bin": {
6
+ "create-node-advance-app": "./bin/cli.js",
7
+ "cnapp": "./bin/cli.js"},
8
+ "keywords": [
9
+ "backend",
10
+ "cli",
11
+ "generator",
12
+ "express",
13
+ "nodejs",
14
+ "typescript",
15
+ "api",
16
+ "rest",
17
+ "scaffold",
18
+ "boilerplate"
19
+ ],
20
+ "author": "Ashish Pathak",
21
+ "license": "MIT",
22
+
23
+ "homepage": "https://github.com/YOUR_GITHUB_USERNAME/backend-forge",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/YOUR_GITHUB_USERNAME/backend-forge.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/YOUR_GITHUB_USERNAME/backend-forge/issues"
30
+ },
31
+
32
+ "files": [
33
+ "bin",
34
+ "lib",
35
+ "README.md",
36
+ "LICENSE"
37
+ ],
38
+
39
+ "preferGlobal": true,
40
+
41
+ "engines": {
42
+ "node": ">=16.0.0"
43
+ },
44
+
45
+ "dependencies": {
46
+ "chalk": "^4.1.2",
47
+ "inquirer": "^8.2.5"
48
+ }
49
+ }