@jatinmourya/ng-init 1.2.7 → 1.2.9

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 +1 -1
  2. package/package.json +15 -12
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Angular Project initialization Automator 🚀
1
+ # Angular Project Initialization Automator 🚀
2
2
 
3
3
  A comprehensive command-line interface (CLI) tool designed to automate and streamline the initialization of Angular projects with intelligent version management, interactive library search, and comprehensive prerequisite handling.
4
4
 
package/package.json CHANGED
@@ -1,18 +1,19 @@
1
1
  {
2
2
  "name": "@jatinmourya/ng-init",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "A comprehensive CLI tool to automate Angular project initialization with intelligent version management and prerequisite handling",
5
5
  "type": "module",
6
- "main": "dist/cli.js",
6
+ "main": "./dist/cli.js",
7
7
  "bin": {
8
8
  "ng-init": "./dist/cli.js"
9
9
  },
10
10
  "files": [
11
- "dist/",
11
+ "dist",
12
12
  "README.md",
13
13
  "LICENSE"
14
14
  ],
15
15
  "scripts": {
16
+ "lint": "eslint .",
16
17
  "build": "node build.js",
17
18
  "dev": "node build.js --watch",
18
19
  "clean": "rimraf dist",
@@ -21,24 +22,26 @@
21
22
  "keywords": [
22
23
  "angular",
23
24
  "cli",
25
+ "scaffold",
26
+ "generator",
24
27
  "automation",
25
- "project-generator",
26
- "scaffolding",
27
- "interactive",
28
28
  "boilerplate",
29
29
  "template",
30
- "development-tools"
30
+ "developer-tools"
31
31
  ],
32
- "author": "jatinmourya",
32
+ "author": "Jatin Mourya <https://github.com/jatinmourya>",
33
33
  "license": "MIT",
34
34
  "repository": {
35
35
  "type": "git",
36
- "url": "https://github.com/jatinmourya/ng-init.git"
36
+ "url": "git+https://github.com/jatinmourya/ng-init.git"
37
37
  },
38
38
  "bugs": {
39
39
  "url": "https://github.com/jatinmourya/ng-init/issues"
40
40
  },
41
41
  "homepage": "https://github.com/jatinmourya/ng-init#readme",
42
+ "engines": {
43
+ "node": ">=18"
44
+ },
42
45
  "dependencies": {
43
46
  "@inquirer/prompts": "^7.10.1",
44
47
  "axios": "^1.6.5",
@@ -49,14 +52,14 @@
49
52
  "ora": "^8.0.1",
50
53
  "semver": "^7.5.4"
51
54
  },
52
- "engines": {
53
- "node": ">=18.0.0"
54
- },
55
55
  "devDependencies": {
56
56
  "esbuild": "^0.27.2",
57
57
  "rimraf": "^6.1.2"
58
58
  },
59
59
  "publishConfig": {
60
60
  "access": "public"
61
+ },
62
+ "exports": {
63
+ ".": "./dist/cli.js"
61
64
  }
62
65
  }