pkg-scaffold 2.0.0 → 2.0.1

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 +4 -4
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -5,10 +5,10 @@
5
5
  `pkg-scaffold` is a high-performance CLI tool designed to audit, clean, and initialize your JavaScript/TypeScript workspaces. It goes far beyond simple scaffolding by analyzing your source code's Abstract Syntax Tree (AST) to find critical issues like undeclared dependencies, orphaned packages, and security leaks.
6
6
 
7
7
 
8
- [![npm version](https://img.shields.io/npm/v/pkg-scaffold.svg?style=for-the-badge&color=CB3837)](https://www.npmjs.com/package/pkg-scaffold)
9
- [![npm downloads](https://img.shields.io/npm/dm/pkg-scaffold.svg?style=for-the-badge&color=34ADFF)](https://www.npmjs.com/package/pkg-scaffold)
10
- [![License](https://img.shields.io/badge/license-MIT-orange.svg?style=for-the-badge)](LICENSE)
11
- [![GitHub stars](https://img.shields.io/github/stars/DreamLongYT/pkg-scaffold.svg?style=for-the-badge&color=gold)](https://github.com/DreamLongYT/pkg-scaffold/stargazers)
8
+ [![npm version](https://img.shields.io/npm/v/pkg-scaffold.svg?style=flat&color=CB3837)](https://www.npmjs.com/package/pkg-scaffold)
9
+ [![npm downloads](https://img.shields.io/npm/dm/pkg-scaffold.svg?style=flat&color=34ADFF)](https://www.npmjs.com/package/pkg-scaffold)
10
+ [![License](https://img.shields.io/badge/license-MIT-orange.svg?style=flat)](LICENSE)
11
+ [![GitHub stars](https://img.shields.io/github/stars/DreamLongYT/pkg-scaffold.svg?style=flat&color=gold)](https://github.com/DreamLongYT/pkg-scaffold/stargazers)
12
12
 
13
13
  ---
14
14
 
package/package.json CHANGED
@@ -1,15 +1,12 @@
1
1
  {
2
2
  "name": "pkg-scaffold",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Zero-config workspace initializer with advanced dependency intelligence: detects ghost dependencies (used but undeclared), orphaned packages (declared but unused), unused imports with file locations, deprecated packages, hardcoded secrets, and more.",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "bin": {
8
8
  "pkg-scaffold": "./index.js"
9
9
  },
10
- "scripts": {
11
- "postpublish": "git add . && git commit -m \"chore: auto-sync version bump and workspace configuration layers\" && git pull origin main --rebase && git push origin main"
12
- },
13
10
  "keywords": [
14
11
  "scaffold",
15
12
  "init",
@@ -29,6 +26,14 @@
29
26
  ],
30
27
  "author": "DreamLongYT",
31
28
  "license": "MIT",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/DreamLongYT/pkg-scaffold.git"
32
+ },
33
+ "bugs": {
34
+ "url": "https://github.com/DreamLongYT/pkg-scaffold/issues"
35
+ },
36
+ "homepage": "https://github.com/DreamLongYT/pkg-scaffold#readme",
32
37
  "dependencies": {
33
38
  "acorn": "^8.17.0",
34
39
  "acorn-walk": "^8.3.5",