@elmoorx/cli-pro 2.0.0-alpha.25

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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +33 -0
  3. package/package.json +31 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Wafra Framework
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @wafra/cli-pro
2
+
3
+ > Advanced CLI with code generation, scaffolding, deployment automation
4
+
5
+ Part of the [Wafra Framework](https://github.com/wafra/framework) — Build fast. Run anywhere. Stay secure.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @wafra/cli-pro
11
+ ```
12
+
13
+ ## Quick Start
14
+
15
+ ```typescript
16
+ import { /* exports */ } from '@wafra/cli-pro';
17
+ ```
18
+
19
+ ## Features
20
+
21
+ - Zero external dependencies
22
+ - Full TypeScript support
23
+ - Tree-shakeable
24
+ - Edge-runtime compatible
25
+ - Arabic/RTL friendly
26
+
27
+ ## Documentation
28
+
29
+ See [https://wafra.dev/docs/cli-pro](https://wafra.dev/docs/cli-pro)
30
+
31
+ ## License
32
+
33
+ MIT © Wafra Framework
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@elmoorx/cli-pro",
3
+ "version": "2.0.0-alpha.25",
4
+ "description": "Advanced CLI with code generation, scaffolding, deployment automation",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "scripts": {
9
+ "build": "tsc"
10
+ },
11
+ "dependencies": {
12
+ "@elmoorx/runtime": "^1.0.0"
13
+ },
14
+ "license": "MIT",
15
+ "author": "Wafra Framework",
16
+ "homepage": "https://wafra.dev/packages/cli-pro",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/wafra/framework",
20
+ "directory": "packages/cli-pro"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/wafra/framework/issues"
24
+ },
25
+ "keywords": [
26
+ "wafra",
27
+ "framework",
28
+ "cli-pro"
29
+ ],
30
+ "sideEffects": false
31
+ }