optikit 1.0.1 → 1.1.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/.history/CHANGELOG_20250202224530.md +34 -0
- package/.history/CHANGELOG_20250202224539.md +34 -0
- package/.history/CHANGELOG_20250202224542.md +34 -0
- package/.history/CHANGELOG_20250202224543.md +34 -0
- package/.history/CHANGELOG_20250202224545.md +34 -0
- package/.history/CHANGELOG_20250202224555.md +24 -0
- package/.history/CHANGELOG_20250202224601.md +24 -0
- package/.history/CHANGELOG_20250202224605.md +25 -0
- package/.history/CHANGELOG_20250202224607.md +25 -0
- package/.history/CHANGELOG_20250202224608.md +25 -0
- package/.history/CHANGELOG_20250202224937.md +25 -0
- package/.history/CHANGELOG_20250202224942.md +25 -0
- package/.history/CHANGELOG_20250202224944.md +25 -0
- package/.history/CHANGELOG_20250202224957.md +25 -0
- package/.history/CHANGELOG_20250202225000.md +26 -0
- package/.history/CHANGELOG_20250202225004.md +26 -0
- package/.history/CHANGELOG_20250202225008.md +26 -0
- package/.history/CHANGELOG_20250202225013.md +26 -0
- package/.history/CHANGELOG_20250202225014.md +26 -0
- package/.history/CHANGELOG_20250202225018.md +26 -0
- package/.history/CHANGELOG_20250202225021.md +26 -0
- package/.history/CHANGELOG_20250202225023.md +26 -0
- package/.history/CHANGELOG_20250202225026.md +22 -0
- package/.history/CHANGELOG_20250202225028.md +23 -0
- package/.history/CHANGELOG_20250202225032.md +23 -0
- package/.history/CHANGELOG_20250202225035.md +23 -0
- package/.history/CHANGELOG_20250202225037.md +23 -0
- package/.history/CHANGELOG_20250202225039.md +23 -0
- package/.history/CHANGELOG_20250202225041.md +23 -0
- package/.history/CHANGELOG_20250202225048.md +23 -0
- package/.history/CHANGELOG_20250202225049.md +23 -0
- package/.history/README_20250202224147.md +55 -0
- package/.history/README_20250202224200.md +55 -0
- package/.history/README_20250202224208.md +55 -0
- package/.history/README_20250202224217.md +55 -0
- package/.history/README_20250202224218.md +55 -0
- package/.history/README_20250202224221.md +55 -0
- package/.history/package_20250202223937.json +41 -0
- package/.history/package_20250202224455.json +41 -0
- package/.history/package_20250202224502.json +41 -0
- package/CHANGELOG.md +21 -1
- package/README.md +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "optikit",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "OptiKit CLI",
|
|
5
|
+
"main": "src/cli.ts",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"start": "node dist/cli.js",
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"optikit": "dist/cli.js"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"optikit",
|
|
17
|
+
"optikit_cli"
|
|
18
|
+
],
|
|
19
|
+
"author": "Mahmoud El Shenawy",
|
|
20
|
+
"license": "ISC",
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"appium-doctor": "1.16.2",
|
|
23
|
+
"arg": "^5.0.2",
|
|
24
|
+
"boxen": "^8.0.1",
|
|
25
|
+
"chalk": "^4.1.2",
|
|
26
|
+
"esm": "^3.2.25",
|
|
27
|
+
"inquirer": "^9.2.0",
|
|
28
|
+
"yargs": "^17.7.2"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@babel/core": "7.26.0",
|
|
32
|
+
"@babel/preset-env": "7.26.0",
|
|
33
|
+
"@babel/preset-react": "7.26.3",
|
|
34
|
+
"@types/boxen": "^3.0.1",
|
|
35
|
+
"@types/node": "^20.0.0",
|
|
36
|
+
"@types/yargs": "^17.0.33",
|
|
37
|
+
"babel-loader": "9.2.1",
|
|
38
|
+
"ts-node": "^10.9.1",
|
|
39
|
+
"typescript": "^5.6.3"
|
|
40
|
+
}
|
|
41
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented in this file. Each release includes details about new features, improvements, bug fixes, and any breaking changes. This changelog helps users and developers track the evolution of the project and understand how different versions may impact their use of the tool.
|
|
4
|
+
|
|
5
|
+
We follow Semantic Versioning (SemVer) to indicate the nature of changes:
|
|
6
|
+
|
|
7
|
+
• MAJOR: Breaking changes that may affect compatibility.
|
|
8
|
+
• MINOR: New features or improvements that are backward compatible.
|
|
9
|
+
• PATCH: Bug fixes and minor improvements that are backward compatible.
|
|
10
|
+
|
|
11
|
+
Each section lists the changes in chronological order, with the most recent release at the top. We also include links to relevant discussions or issues when appropriate.
|
|
12
|
+
|
|
13
|
+
## [1.0.3]
|
|
14
|
+
### Optimized
|
|
15
|
+
- Updated the CLI to support the latest version of Opticore.
|
|
16
|
+
|
|
17
|
+
## [1.0.2]
|
|
18
|
+
### Enhanced
|
|
19
|
+
- Improved error handling and messaging for better user experience.
|
|
20
|
+
|
|
21
|
+
## [1.0.1]
|
|
2
22
|
### Added
|
|
3
23
|
- Initial prototype with basic CLI command structure.
|
package/README.md
CHANGED
|
@@ -14,6 +14,12 @@
|
|
|
14
14
|
|
|
15
15
|
**OptiKit** is a powerful command-line interface (CLI) tool designed to streamline your workflows and automate repetitive tasks. With its user-friendly commands and robust functionality, **OptiKit** helps you manage your projects efficiently and effectively.
|
|
16
16
|
|
|
17
|
+
## Designed for Opticore Developers
|
|
18
|
+
|
|
19
|
+
**OptiKit CLI** is built to empower developers—especially those leveraging our [Opticore micro framework](https://pub.dev/packages/opticore). By integrating seamlessly with Opticore, OptiKit streamlines your workflow and automates repetitive tasks, allowing you to focus on building powerful applications.
|
|
20
|
+
|
|
21
|
+
Explore the **OptiCore** framework on [pub.dev](https://pub.dev/packages/opticore) and see how **OptiKit** can enhance your development experience.
|
|
22
|
+
|
|
17
23
|
## Features
|
|
18
24
|
|
|
19
25
|
- **Customizable**: The CLI commands and options to fit your specific needs.
|