devknife 1.0.0 → 1.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.
package/CHANGELOG.md CHANGED
@@ -1,23 +1,26 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
3
+ All notable changes to **devknife** will be documented in this file.
4
4
 
5
- ## [1.0.0] - 2024-01-01
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ---
9
+
10
+ ## [Unreleased]
11
+
12
+ ### Planned
13
+ - Additional CLI commands
14
+ - Plugin system
15
+
16
+ ---
17
+
18
+ ## [1.0.0] - 2026-04-04
6
19
 
7
20
  ### Added
8
21
  - Initial release of devknife
9
- - 50+ developer utilities in a single package
10
- - Zero runtime dependencies
11
- - CLI tool with interactive TUI mode
12
- - Importable TypeScript library
13
- - Dual ESM + CJS build output
14
- - 100% test coverage
15
- - Tools included:
16
- - **Crypto**: MD5, SHA-1, SHA-256, SHA-512 hashing, password generation
17
- - **Generators**: UUID v4, NanoID, Lorem Ipsum
18
- - **Encoders**: Base64, URL, HTML entities, JWT decoder
19
- - **Formatters**: JSON prettify/minify, text case conversion
20
- - **Converters**: Color (HEX/RGB/HSL), timestamps, number bases
21
- - **Network**: IP validation, MAC address generation
22
- - CI/CD pipeline with GitHub Actions
23
- - ESLint and Prettier configuration
22
+ - 50-in-1 developer Swiss Army knife CLI & library
23
+ - UUID generation, hashing, JWT utilities
24
+ - Base64, JSON, color, time helpers
25
+ - Zero-dependency architecture
26
+ - Full TypeScript support with dual ESM/CJS build
package/README.md CHANGED
@@ -5,9 +5,10 @@
5
5
  [![npm version](https://img.shields.io/npm/v/devknife.svg)](https://www.npmjs.com/package/devknife)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
7
7
  [![TypeScript Strict](https://img.shields.io/badge/TypeScript-Strict-3178c6.svg)](https://www.typescriptlang.org/)
8
- [![100% Coverage](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg)](https://github.com/Avinashvelu03/devknife)
8
+ [![Library Coverage: 100%](https://img.shields.io/badge/Library%20Coverage-100%25-brightgreen.svg)](https://github.com/Avinashvelu03/devknife)
9
9
  [![Zero Dependencies](https://img.shields.io/badge/Dependencies-0-green.svg)](https://github.com/Avinashvelu03/devknife)
10
10
  [![Node >= 18](https://img.shields.io/badge/Node-%3E%3D%2018-339933.svg)](https://nodejs.org)
11
+ [![GitHub Stars](https://img.shields.io/github/stars/Avinashvelu03/devknife?style=flat-square&color=yellow)](https://github.com/Avinashvelu03/devknife)
11
12
 
12
13
  ```
13
14
  ____ __. .__ ___________.__
@@ -185,7 +186,7 @@ import {
185
186
  - **Interactive TUI** — Built-in terminal menu using `node:readline`
186
187
  - **Dual Usage** — CLI tool AND importable TypeScript library
187
188
  - **STDIN Support** — Pipe data directly: `echo "hello" | devknife base64 encode`
188
- - **100% Test Coverage** — Every function, every branch
189
+ - **100% Library Coverage** — Every library function and branch unit-tested; CLI integration-tested separately
189
190
  - **TypeScript Strict** — Full type safety with `strict: true`
190
191
  - **ESM + CJS** — Dual module format for maximum compatibility
191
192
 
package/dist/cli.cjs CHANGED
File without changes
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devknife",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "The ultimate zero-dependency, 50-in-1 developer Swiss Army knife CLI and library.",
5
5
  "author": "Avinashvelu03 <avinashvelu03@gmail.com>",
6
6
  "license": "MIT",