opticore-feature-component 1.0.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/README.md +697 -0
- package/dist/core-ED52ORJA.js +1950 -0
- package/dist/index.cjs +2243 -0
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -0
- package/package.json +42 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "opticore-feature-component",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CLI to create feature component",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"create-feature-clean-module": "dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
13
|
+
"build": "tsup"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://opticore-js.com",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@clack/prompts": "^0.8.2",
|
|
18
|
+
"ansi-colors": "^4.1.3",
|
|
19
|
+
"cli-progress": "^3.12.0",
|
|
20
|
+
"express": "^4.19.2",
|
|
21
|
+
"gradient-string": "^3.0.0",
|
|
22
|
+
"opticore-http-response": "^1.0.6",
|
|
23
|
+
"opticore-logger": "^1.0.20",
|
|
24
|
+
"opticore-router": "^1.0.18",
|
|
25
|
+
"ora": "^8.1.1",
|
|
26
|
+
"tsup": "^8.3.5",
|
|
27
|
+
"tsx": "^4.19.2",
|
|
28
|
+
"typescript": "^5.4.5"
|
|
29
|
+
},
|
|
30
|
+
"type": "module",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/guyzoum77/opticore-feature-cli.git"
|
|
34
|
+
},
|
|
35
|
+
"author": "Guy-serge Kouacou",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/cli-progress": "^3.11.6",
|
|
39
|
+
"@types/gradient-string": "^1.1.6",
|
|
40
|
+
"@types/node": "^20.12.12"
|
|
41
|
+
}
|
|
42
|
+
}
|