@opra/cli 1.28.4 → 1.28.5
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/LICENSE +1 -1
- package/README.md +16 -2
- package/package.json +4 -3
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
<a href="https://oprajs.com">
|
|
4
|
+
<img src="https://oprajs.com/img/opra-header-block.webp" width="880" alt="OPRA — Open Platform for Rich APIs" />
|
|
5
|
+
</a>
|
|
6
|
+
|
|
1
7
|
# @opra/cli
|
|
2
8
|
|
|
9
|
+
CLI tools for the OPRA framework — generate typed clients with `oprimp`
|
|
10
|
+
|
|
3
11
|
[![NPM Version][npm-image]][npm-url]
|
|
4
12
|
[![NPM Downloads][downloads-image]][downloads-url]
|
|
5
13
|
[![CI Tests][ci-test-image]][ci-test-url]
|
|
6
14
|
[![Test Coverage][coveralls-image]][coveralls-url]
|
|
7
15
|
|
|
8
|
-
|
|
16
|
+
[🌐 Documentation](https://oprajs.com) · [🚀 Getting Started](https://oprajs.com/docs/introduction) · [📦 Packages](https://github.com/panates/opra#packages) · [💬 Issues](https://github.com/panates/opra/issues)
|
|
17
|
+
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
`@opra/cli` is a command-line tool for OPRA (Open Platform for Richful APIs). It currently features `oprimp`, a
|
|
9
23
|
TypeScript code generator that creates client-side models and API services from an OPRA service.
|
|
10
24
|
|
|
11
25
|
## Installation
|
|
@@ -121,6 +135,6 @@ Available under [MIT](LICENSE) license.
|
|
|
121
135
|
|
|
122
136
|
[ci-test-url]: https://github.com/panates/opra/actions/workflows/test.yml
|
|
123
137
|
|
|
124
|
-
[coveralls-image]: https://coveralls.io/repos/github/panates/opra/badge.svg?branch=
|
|
138
|
+
[coveralls-image]: https://coveralls.io/repos/github/panates/opra/badge.svg?branch=dev
|
|
125
139
|
|
|
126
140
|
[coveralls-url]: https://coveralls.io/github/panates/opra?branch=main
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opra/cli",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.5",
|
|
4
4
|
"description": "Opra CLI tools",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"homepage": "https://www.oprajs.com",
|
|
7
8
|
"dependencies": {
|
|
8
9
|
"@browsery/type-is": "^2.0.2-r1",
|
|
9
10
|
"@jsopen/objects": "^2.2.2",
|
|
@@ -15,8 +16,8 @@
|
|
|
15
16
|
"tslib": "^2.8.1"
|
|
16
17
|
},
|
|
17
18
|
"peerDependencies": {
|
|
18
|
-
"@opra/client": "^1.28.
|
|
19
|
-
"@opra/common": "^1.28.
|
|
19
|
+
"@opra/client": "^1.28.5",
|
|
20
|
+
"@opra/common": "^1.28.5"
|
|
20
21
|
},
|
|
21
22
|
"type": "module",
|
|
22
23
|
"module": "./index.js",
|