oapiex 0.1.2 → 0.2.2

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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "oapiex",
3
3
  "type": "module",
4
- "version": "0.1.2",
4
+ "version": "0.2.2",
5
5
  "description": "A CLI tool to extract OpenAPI specifications from documentations generated by readme.com and other similar platforms, and generate TypeScript SDKs for seamless API integration.",
6
6
  "main": "./dist/index.cjs",
7
7
  "private": false,
8
- "homepage": "https://oapi-extractor.toneflix.net",
8
+ "homepage": "https://toneflix.github.io/oapiex",
9
9
  "repository": {
10
- "url": "https://github.com/toneflix/oapi-extractor.git",
10
+ "url": "https://github.com/toneflix/oapiex.git",
11
11
  "type": "git"
12
12
  },
13
13
  "publishConfig": {
@@ -73,6 +73,7 @@
73
73
  "eslint": "^9.39.2",
74
74
  "tsx": "^4.20.3",
75
75
  "typescript": "^5.4.5",
76
+ "@vitest/coverage-v8": "3.2.4",
76
77
  "typescript-eslint": "^8.53.0",
77
78
  "vite-tsconfig-paths": "^5.1.4",
78
79
  "vitepress": "^1.5.0",
@@ -83,14 +84,16 @@
83
84
  "test": "pnpm vitest --run",
84
85
  "test:watch": "pnpm vitest",
85
86
  "lint": "eslint . --ext .ts --ext .js",
86
- "cmd": "tsx src/cli.ts",
87
+ "oapie": "node --import tsx src/cli.ts",
87
88
  "build": "tsdown",
88
89
  "version": "pnpm run build",
89
90
  "unlink": "pnpm uninstall --global oapiex || true",
90
- "release": "pnpm changeset version && pnpm changeset publish",
91
- "publish-it": "pnpm publish --tag latest",
91
+ "barrel": "pnpm -r --filter \"./packages/*\" barrel && pnpm barrelize",
92
+ "coverage": "pnpm vitest --run --coverage",
92
93
  "docs:dev": "vitepress dev docs",
93
94
  "docs:build": "vitepress build docs",
95
+ "version:packages": "pnpm -r --filter \"@oapiex/*\" version:patch && git add . && git commit -m \"chore: bump package versions\"",
96
+ "publish:packages": "pnpm version:packages && pnpm -r --filter \"@oapiex/*\" publish --access public",
94
97
  "docs:preview": "vitepress preview docs",
95
98
  "preuninstall": "node ./uninstall.js"
96
99
  }