devknife 1.0.0 → 1.0.2
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 +20 -17
- package/README.md +3 -2
- package/dist/cli.cjs +0 -0
- package/dist/cli.js +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to
|
|
3
|
+
All notable changes to **devknife** will be documented in this file.
|
|
4
4
|
|
|
5
|
-
|
|
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
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
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
|
[](https://www.npmjs.com/package/devknife)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
|
-
[](https://github.com/Avinashvelu03/devknife)
|
|
9
9
|
[](https://github.com/Avinashvelu03/devknife)
|
|
10
10
|
[](https://nodejs.org)
|
|
11
|
+
[](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%
|
|
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