tsoa-next 7.1.0 → 7.2.1

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <a href="https://tsoa-community.github.io/docs/" target="blank">
2
+ <a href="https://vannadii.github.io/tsoa-next/" target="_blank" rel="noreferrer">
3
3
  <h1>tsoa-next</h1>
4
4
  </a>
5
5
  Pronounced so·uh
@@ -11,6 +11,12 @@ OpenAPI-compliant REST APIs using TypeScript and Node
11
11
 
12
12
  </div>
13
13
 
14
+ ## Project Lineage
15
+
16
+ `tsoa-next` continues the original [`tsoa`](https://github.com/lukeautry/tsoa) project.
17
+ The original repository and its contributors established the stable TypeScript-first and OpenAPI-first foundation this work builds on.
18
+ Where historical release notes or migration references still point upstream, they are kept intentionally for provenance.
19
+
14
20
  ## Goal
15
21
 
16
22
  - TypeScript controllers and models as the single source of truth for your API
@@ -36,22 +42,23 @@ OpenAPI-compliant REST APIs using TypeScript and Node
36
42
  ## Getting Started
37
43
 
38
44
  - Requirements:
39
- - Node.js 24.14 or newer
40
- - npm 11 or newer
41
- - [Documentation](https://tsoa-community.github.io/docs/)
42
- - [API Reference](https://tsoa-community.github.io/reference/)
43
- - [Getting started guide](https://tsoa-community.github.io/docs/getting-started)
45
+ - Node.js 22 or newer
46
+ - npm 10 or newer
47
+ - We verify support across the previous LTS, current LTS, and Node vNext in CI
48
+ - [Documentation](https://vannadii.github.io/tsoa-next/docs/)
49
+ - [API Reference](https://vannadii.github.io/tsoa-next/reference/)
50
+ - [Getting started guide](https://vannadii.github.io/tsoa-next/docs/getting-started)
44
51
 
45
52
  ## Examples
46
53
 
47
- Check out the [guides](https://tsoa-community.github.io/docs/getting-started)
54
+ Check out the [guides](https://vannadii.github.io/tsoa-next/docs/)
48
55
 
49
- See example controllers in [the tests](tests/fixtures/controllers)
56
+ See example controllers in [the tests](https://github.com/VannaDii/tsoa-next/tree/main/tests/fixtures/controllers)
50
57
 
51
- See example models in [the tests](tests/fixtures/testModel.ts)
58
+ See example models in [the tests](https://github.com/VannaDii/tsoa-next/blob/main/tests/fixtures/testModel.ts)
52
59
 
53
60
  ## Help wanted
54
61
 
55
62
  ### Contributing code
56
63
 
57
- To contribute (via a PR), please first see the [Contributing Guide](https://github.com/vannadii/tsoa-next/tree/master/docs/CONTRIBUTING.md)
64
+ To contribute (via a PR), please first see the [Contributing Guide](https://github.com/VannaDii/tsoa-next/blob/main/docs/CONTRIBUTING.md)
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from '@tsoa-next/runtime';
2
1
  export * from '@tsoa-next/cli';
2
+ export * from '@tsoa-next/runtime';
package/dist/index.js CHANGED
@@ -14,6 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("@tsoa-next/runtime"), exports);
18
17
  __exportStar(require("@tsoa-next/cli"), exports);
18
+ __exportStar(require("@tsoa-next/runtime"), exports);
19
19
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qDAAkC;AAClC,iDAA8B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,qDAAkC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsoa-next",
3
- "version": "7.1.0",
3
+ "version": "7.2.1",
4
4
  "description": "Build swagger-compliant REST APIs using TypeScript and Node",
5
5
  "main": "./dist/index.js",
6
6
  "typings": "./dist/index.d.ts",
@@ -31,8 +31,8 @@
31
31
  "author": "Luke Autry <lukeautry@gmail.com> (http://www.lukeautry.com)",
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "@tsoa-next/cli": "7.1.0",
35
- "@tsoa-next/runtime": "7.1.0"
34
+ "@tsoa-next/cli": "7.2.1",
35
+ "@tsoa-next/runtime": "7.2.1"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/node": "24.12.0",
@@ -43,8 +43,8 @@
43
43
  "url": "https://github.com/VannaDii/tsoa-next.git"
44
44
  },
45
45
  "engines": {
46
- "node": ">=24.14.0",
47
- "npm": ">=11.0.0"
46
+ "node": ">=22.0.0",
47
+ "npm": ">=10.0.0"
48
48
  },
49
49
  "engineStrict": true,
50
50
  "publishConfig": {