@opra/cli 1.28.3 → 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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +16 -2
  3. package/package.json +5 -4
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 Panates
3
+ Copyright (c) 2020-present Panates®
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
- `@opra/cli` is a command-line tool for OPRA (Open Protocol for Restfull APIs). It currently features `oprimp`, a
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=main
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,12 +1,13 @@
1
1
  {
2
2
  "name": "@opra/cli",
3
- "version": "1.28.3",
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
- "@jsopen/objects": "^2.2.1",
10
+ "@jsopen/objects": "^2.2.2",
10
11
  "ansi-colors": "^4.1.3",
11
12
  "commander": "^14.0.3",
12
13
  "js-string-escape": "^1.0.1",
@@ -15,8 +16,8 @@
15
16
  "tslib": "^2.8.1"
16
17
  },
17
18
  "peerDependencies": {
18
- "@opra/client": "^1.28.3",
19
- "@opra/common": "^1.28.3"
19
+ "@opra/client": "^1.28.5",
20
+ "@opra/common": "^1.28.5"
20
21
  },
21
22
  "type": "module",
22
23
  "module": "./index.js",