-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 KB
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
{
"name": "@acrontum/oas-codegen-parser",
"version": "1.2.4",
"description": "OpenAPI schema parser / mapper for codegen tools",
"repository": {
"type": "git",
"url": "git+https://github.com/acrontum/oas-codegen.git",
"directory": "oas-codegen-parser"
},
"main": "dist/typegen.js",
"bin": {
"oas-codegen-parser": "dist/typegen.js",
"ocp": "dist/typegen.js"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"format": "npx prettier --print-width 130 --write '**/*.ts'",
"version": "npm verison --no-commit-hooks --no-git-tag-version",
"setup": "git config core.hooksPath ./githooks",
"docs": "npm run docs-readme && npm run docs-changelog",
"docs-readme": "npx doctoc --github readme.md && sed -i 's/%5C_/_/g' readme.md",
"docs-changelog": "npx auto-changelog --output changelog.md --commit-limit false --sort-commits date --hide-empty-releases --ignore-commit-pattern 'release' --breaking-pattern 'breaking change: '"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^24.0.0",
"auto-changelog": "^2.5.0",
"openapi-types": "^12.1.3",
"source-map-support": "^0.5.21",
"typescript": "^5.8.3"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"readme.md"
]
}