-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "typera-openapi",
"version": "2.3.1",
"description": "Generate OpenAPI spec from typera routes",
"repository": "https://github.com/akheron/typera-openapi",
"author": "Petri Lehtinen <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"bin": {
"typera-openapi": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"lint": "eslint --max-warnings 0 '**/*.ts' && prettier --check \"**/*.{json,md}\"",
"lint:fix": "eslint --fix '**/*.ts' && prettier --write '**/*.{json,md}'",
"test": "jest",
"doctoc": "doctoc README.md --title '## Table of Contents' && prettier --write README.md",
"prepublishOnly": "yarn clean && yarn build"
},
"dependencies": {
"openapi-types": "^12.0.0",
"statuses": "^2.0.1",
"typescript": ">=5.1.6",
"yargs": "^17.0.0"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.0.3",
"@types/jest": "^27.0.1",
"@types/node": "*",
"@types/statuses": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"doctoc": "^2.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"io-ts": "^2.2.13",
"io-ts-types": "^0.5.12",
"jest": "^27.0.1",
"prettier": "^3.0.1",
"ts-jest": "^27.0.1",
"typera-express": "^2.4.0"
}
}