@expressots/cli 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.
Files changed (2) hide show
  1. package/README.md +33 -0
  2. package/package.json +137 -0
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ <p align="center">
2
+ <a href="https://expresso-ts.com/" target="blank"><img src="https://github.com/expressots/expressots/blob/main/media/alogo.png" width="120" alt="Expresso TS Logo" /></a>
3
+ </p>
4
+
5
+ # <h1 align="left">Expresso TS CLI Tool</h1>
6
+
7
+ ## Description
8
+
9
+ The Expresso TS CLI is a command-line interface tool that helps you to create `ExpressoTS` projects, develop, and maintain your applications and resources created. It assists in multiple ways, including scaffolding the project as well as the services offered by the application such as use cases, controllers, providers and more.
10
+
11
+ ### This is an example of the CLI for the Expresso TS framework.
12
+
13
+ [![asciicast](https://asciinema.org/a/7diTOTyY653mpdA0JtugjRn9a.svg)](https://asciinema.org/a/7diTOTyY653mpdA0JtugjRn9a)
14
+
15
+
16
+ ## Installation 💻
17
+
18
+ ```
19
+ npm install -g @expressots/cli
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ Learn more in the official documentation
25
+
26
+ ## Stay in touch
27
+
28
+ - Website: [https://expresso-ts.com](https://expresso-ts.com)
29
+ - Twitch: [@expressots Development](https://www.twitch.tv/richardzampieri)
30
+
31
+ ## License
32
+
33
+ Expresso TS is [MIT Licensed](https://github.com/expressots/expressots-cli/blob/main/LICENSE.md)
package/package.json ADDED
@@ -0,0 +1,137 @@
1
+ {
2
+ "name": "@expressots/cli",
3
+ "version": "1.0.0",
4
+ "description": "Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)",
5
+ "author": "Richard Zampieri",
6
+ "license": "MIT",
7
+ "bugs": {
8
+ "url": "https://github.com/expressots/expressots-cli/issues"
9
+ },
10
+ "bin": {
11
+ "expressots": "bin/cli.js"
12
+ },
13
+ "engines": {
14
+ "node": ">=18.10.0"
15
+ },
16
+ "funding": {
17
+ "type": "",
18
+ "url": ""
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/expressots/expressots-cli"
23
+ },
24
+ "homepage": "https://expresso-ts.com",
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "keywords": [
29
+ "ExpressoTS",
30
+ "CLI",
31
+ "Scaffolding"
32
+ ],
33
+ "scripts": {
34
+ "start:build": "npm run build && npm run start",
35
+ "start": "node ./bin/cli.js",
36
+ "start:dev": "tsnd ./src/cli.ts",
37
+ "build": "npm run clean && tsc -p tsconfig.json && chmod +x ./bin/cli.js",
38
+ "clean": "rimraf ./bin",
39
+ "lint": "eslint .eslintrc.js --ext .ts,.tsx,.js,.jsx .",
40
+ "release": "release-it"
41
+ },
42
+ "files": [
43
+ "bin/cli.js"
44
+ ],
45
+ "dependencies": {
46
+ "chalk-animation": "^1",
47
+ "cli-progress": "^3.11.2",
48
+ "degit": "^2.8.4",
49
+ "inquirer": "^8.0.0",
50
+ "yargs": "^17.6.2"
51
+ },
52
+ "devDependencies": {
53
+ "@types/chalk-animation": "^1.6.1",
54
+ "@types/cli-progress": "^3.11.0",
55
+ "@types/degit": "^2.8.3",
56
+ "@types/inquirer": "^9.0.3",
57
+ "@types/node": "^18.11.19",
58
+ "@types/yargs": "^17.0.22",
59
+ "@typescript-eslint/eslint-plugin": "^5.53.0",
60
+ "@typescript-eslint/parser": "^5.53.0",
61
+ "chalk": "^4.1.2",
62
+ "eslint": "^8.34.0",
63
+ "eslint-config-prettier": "^8.6.0",
64
+ "eslint-plugin-prettier": "^4.2.1",
65
+ "husky": "^8.0.3",
66
+ "prettier": "^2.8.4",
67
+ "release-it": "^15.6.0",
68
+ "rimraf": "^4.1.2",
69
+ "ts-node-dev": "^2.0.0",
70
+ "typescript": "^4.9.5"
71
+ },
72
+ "release-it": {
73
+ "git": {
74
+ "commitMessage": "chore: release v${version}"
75
+ },
76
+ "github": {
77
+ "release": true
78
+ },
79
+ "npm": {
80
+ "publish": false
81
+ },
82
+ "plugins": {
83
+ "@release-it/conventional-changelog": {
84
+ "infile": "CHANGELOG.md",
85
+ "preset": {
86
+ "name": "conventionalcommits",
87
+ "types": [
88
+ {
89
+ "type": "feat",
90
+ "section": "Features"
91
+ },
92
+ {
93
+ "type": "fix",
94
+ "section": "Bug Fixes"
95
+ },
96
+ {
97
+ "type": "perf",
98
+ "section": "Performance Improvements"
99
+ },
100
+ {
101
+ "type": "revert",
102
+ "section": "Reverts"
103
+ },
104
+ {
105
+ "type": "docs",
106
+ "section": "Documentation"
107
+ },
108
+ {
109
+ "type": "style",
110
+ "section": "Styles"
111
+ },
112
+ {
113
+ "type": "refactor",
114
+ "section": "Code Refactoring"
115
+ },
116
+ {
117
+ "type": "test",
118
+ "section": "Tests"
119
+ },
120
+ {
121
+ "type": "build",
122
+ "section": "Build System"
123
+ },
124
+ {
125
+ "type": "ci",
126
+ "section": "Continuous Integrations"
127
+ },
128
+ {
129
+ "type": "chore",
130
+ "hidden": true
131
+ }
132
+ ]
133
+ }
134
+ }
135
+ }
136
+ }
137
+ }