@spinajs/http-swagger 2.0.470

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 (1) hide show
  1. package/package.json +67 -0
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@spinajs/http-swagger",
3
+ "version": "2.0.470",
4
+ "description": "Swagger/OpenAPI documentation generator for SpineJS HTTP controllers. Reads route metadata and JSDoc comments to produce OpenAPI 3.0 specs.",
5
+ "main": "lib/cjs/index.js",
6
+ "module": "lib/mjs/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./lib/mjs/index.js",
10
+ "require": "./lib/cjs/index.js"
11
+ }
12
+ },
13
+ "type": "module",
14
+ "private": false,
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "engines": {
19
+ "node": ">=16.11"
20
+ },
21
+ "scripts": {
22
+ "build": "npm run clean && npm run compile",
23
+ "compile": "tsc -b tsconfig.mjs.json",
24
+ "compile:cjs": "tsc -b tsconfig.cjs.json",
25
+ "rimraf": "./node_modules/rimraf/bin.js",
26
+ "clean": "rimraf lib/ && rimraf tsconfig.tsbuildinfo",
27
+ "test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
28
+ "coverage": "nyc npm run test",
29
+ "build-docs": "rimraf docs && typedoc --options typedoc.json src/",
30
+ "format": "prettier --write \"src/**/*.ts\"",
31
+ "lint": "eslint -c .eslintrc.cjs --ext .ts src --fix",
32
+ "preversion": "npm run lint",
33
+ "version": "npm run format && git add -A src"
34
+ },
35
+ "files": [
36
+ "lib/**/*"
37
+ ],
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/spinajs/main.git"
41
+ },
42
+ "keywords": [
43
+ "spinajs",
44
+ "swagger",
45
+ "openapi",
46
+ "documentation"
47
+ ],
48
+ "author": "SpinaJS <spinajs@coderush.pl> (https://github.com/spinajs/main)",
49
+ "license": "MIT",
50
+ "bugs": {
51
+ "url": "https://github.com/spinajs/main/issues"
52
+ },
53
+ "homepage": "https://github.com/spinajs/main#readme",
54
+ "dependencies": {
55
+ "@spinajs/configuration": "^2.0.470",
56
+ "@spinajs/di": "^2.0.470",
57
+ "@spinajs/exceptions": "^2.0.470",
58
+ "@spinajs/http": "^2.0.470",
59
+ "@spinajs/log": "^2.0.470",
60
+ "@spinajs/reflection": "^2.0.470",
61
+ "@spinajs/fs": "^2.0.470",
62
+ "@spinajs/templates": "^2.0.470",
63
+ "@spinajs/templates-pug": "^2.0.470"
64
+ },
65
+ "devDependencies": {
66
+ }
67
+ }