@kong/spec-renderer 1.111.3 → 1.111.4-pr.951.4d84d69.0
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 +5 -0
- package/package.json +22 -78
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@ An online API specification editor is available at [api-documentation.dev](https
|
|
|
23
23
|
- [Build for production](#build-for-production)
|
|
24
24
|
- [Committing Changes](#committing-changes)
|
|
25
25
|
- [Enforcing Commit Format](#enforcing-commit-format)
|
|
26
|
+
- [Agentic Reviewer](#agentic-reviewer)
|
|
26
27
|
- [Approvals](#approvals)
|
|
27
28
|
- [Package Publishing](#package-publishing)
|
|
28
29
|
- [Third-party packages and Thank You](#third-party-packages-and-thank-you)
|
|
@@ -306,6 +307,10 @@ This will trigger the Commitizen interactive prompt for building your commit mes
|
|
|
306
307
|
|
|
307
308
|
Additionally, CI will use `commitlint` to validate the commits associated with a PR in the `Lint and Validate` job.
|
|
308
309
|
|
|
310
|
+
### Agentic reviewer
|
|
311
|
+
|
|
312
|
+
[View the reference for the `/muthur` agentic reviewer](./docs/agentic-reviewer.md)
|
|
313
|
+
|
|
309
314
|
### Approvals
|
|
310
315
|
|
|
311
316
|
- All pull requests require review and approval from authorized team members.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong/spec-renderer",
|
|
3
|
-
"version": "1.111.
|
|
3
|
+
"version": "1.111.4-pr.951.4d84d69.0",
|
|
4
4
|
"description": "Kong's open-source spec renderer",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -29,26 +29,6 @@
|
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
|
-
"scripts": {
|
|
33
|
-
"dev": "cross-env USE_SANDBOX=true vite",
|
|
34
|
-
"build": "pnpm run typecheck && pnpm run build:package && pnpm run build:webcomponent && pnpm run build:types && pnpm run build:aliases",
|
|
35
|
-
"build:package": "vite build -m production",
|
|
36
|
-
"build:webcomponent": "cross-env VITE_AS_WEB_COMPONENT='true' vite build -m production",
|
|
37
|
-
"build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
|
|
38
|
-
"build:aliases": "tsc-alias -p './tsconfig.build.json'",
|
|
39
|
-
"build:analyzer": "BUILD_VISUALIZER='true' vite build -m production",
|
|
40
|
-
"build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
|
|
41
|
-
"preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
|
|
42
|
-
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
|
43
|
-
"stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
|
|
44
|
-
"stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
|
|
45
|
-
"lint": "eslint",
|
|
46
|
-
"lint:fix": "eslint --fix",
|
|
47
|
-
"test": "cross-env FORCE_COLOR=1 vitest run",
|
|
48
|
-
"test:open": "cross-env FORCE_COLOR=1 vitest --ui",
|
|
49
|
-
"semantic-release": "semantic-release",
|
|
50
|
-
"commit": "cz"
|
|
51
|
-
},
|
|
52
32
|
"peerDependencies": {
|
|
53
33
|
"vue": ">= 3.3.13 < 4"
|
|
54
34
|
},
|
|
@@ -130,61 +110,6 @@
|
|
|
130
110
|
"vue-router": "^4.6.4",
|
|
131
111
|
"vue-tsc": "^3.3.7"
|
|
132
112
|
},
|
|
133
|
-
"pnpm": {
|
|
134
|
-
"onlyBuiltDependencies": [
|
|
135
|
-
"@evilmartians/lefthook",
|
|
136
|
-
"@parcel/watcher",
|
|
137
|
-
"esbuild",
|
|
138
|
-
"vue-demi"
|
|
139
|
-
],
|
|
140
|
-
"overrides": {
|
|
141
|
-
"openapi3-ts": "4.6.0",
|
|
142
|
-
"jsonpath-plus@<10.3.0": ">=10.4.0",
|
|
143
|
-
"elliptic@<=6.6.0": ">=6.6.1",
|
|
144
|
-
"@babel/helpers@<8.0.0": ">=8.0.0",
|
|
145
|
-
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.6",
|
|
146
|
-
"brace-expansion@<=5.0.7": ">=5.0.9",
|
|
147
|
-
"pbkdf2@<=3.1.2": ">=3.1.6",
|
|
148
|
-
"sha.js@<=2.4.11": ">=2.4.12",
|
|
149
|
-
"cipher-base@<=1.0.4": ">=1.0.7",
|
|
150
|
-
"glob@>=10.2.0 <10.5.0": ">=13.0.6",
|
|
151
|
-
"diff@>=4.0.0 <4.0.4": ">=4.0.4",
|
|
152
|
-
"@isaacs/brace-expansion@<=5.0.0": ">=5.0.1",
|
|
153
|
-
"mdast-util-to-hast@>=13.0.0 <13.2.1": ">=13.2.1",
|
|
154
|
-
"qs@>=6.7.0 <=6.15.1": ">=6.15.3",
|
|
155
|
-
"bn.js@>=5.0.0 <5.2.3": ">=5.2.5",
|
|
156
|
-
"bn.js@<4.12.3": ">=5.2.5",
|
|
157
|
-
"rollup@>=4.0.0 <4.59.0": ">=4.62.2",
|
|
158
|
-
"minimatch@<10.2.3": ">=10.2.5",
|
|
159
|
-
"ajv@<6.14.0": "^6.15.0",
|
|
160
|
-
"immutable@>=5.0.0 <5.1.8": ">=5.1.9",
|
|
161
|
-
"flatted@<=3.4.1": ">=3.4.2",
|
|
162
|
-
"undici@<6.24.0": ">=8.5.0",
|
|
163
|
-
"undici@>=7.0.0 <7.29.0": "7.29.0",
|
|
164
|
-
"undici@>=8.0.0 <8.9.0": ">=8.9.0",
|
|
165
|
-
"handlebars@>=4.0.0 <4.7.9": ">=4.7.9",
|
|
166
|
-
"picomatch@<2.3.2": ">=4.0.5",
|
|
167
|
-
"lodash-es@<=4.17.23": ">=4.18.0",
|
|
168
|
-
"lodash@<=4.17.23": ">=4.18.0",
|
|
169
|
-
"yaml@>=2.0.0 <2.8.3": ">=2.9.0",
|
|
170
|
-
"fast-uri@<=3.1.1": ">=3.1.4",
|
|
171
|
-
"fast-uri@>=4.0.0 <4.1.2": ">=4.1.2",
|
|
172
|
-
"uuid@<11.1.1": ">=11.1.1",
|
|
173
|
-
"vitest@<3.2.6": ">=3.2.7",
|
|
174
|
-
"js-cookie@<=3.0.5": ">=3.0.8",
|
|
175
|
-
"tmp@<0.2.6": ">=0.2.7",
|
|
176
|
-
"esbuild@>=0.27.3 <0.28.1": ">=0.28.1",
|
|
177
|
-
"sanitize-html@=2.17.3": ">=2.17.6",
|
|
178
|
-
"ws@>=8.0.0 <8.21.0": ">=8.21.1",
|
|
179
|
-
"form-data@>=4.0.0 <4.0.6": ">=4.0.6",
|
|
180
|
-
"vite@>=7.0.0 <=7.3.4": ">=7.3.6",
|
|
181
|
-
"@babel/core@<8.0.0": ">=8.0.1",
|
|
182
|
-
"markdown-it@<=14.1.1": ">=14.2.0",
|
|
183
|
-
"linkify-it@<=5.0.0": ">=5.0.2",
|
|
184
|
-
"js-yaml@>=4.0.0 <=4.1.1": ">=4.3.0",
|
|
185
|
-
"js-yaml@>=5.0.0 <=5.2.1": ">=5.2.2"
|
|
186
|
-
}
|
|
187
|
-
},
|
|
188
113
|
"repository": {
|
|
189
114
|
"type": "git",
|
|
190
115
|
"url": "git+https://github.com/Kong/spec-renderer.git"
|
|
@@ -251,5 +176,24 @@
|
|
|
251
176
|
"jiraAppend": "]"
|
|
252
177
|
}
|
|
253
178
|
},
|
|
254
|
-
"
|
|
255
|
-
|
|
179
|
+
"scripts": {
|
|
180
|
+
"dev": "cross-env USE_SANDBOX=true vite",
|
|
181
|
+
"build": "pnpm run typecheck && pnpm run build:package && pnpm run build:webcomponent && pnpm run build:types && pnpm run build:aliases",
|
|
182
|
+
"build:package": "vite build -m production",
|
|
183
|
+
"build:webcomponent": "cross-env VITE_AS_WEB_COMPONENT='true' vite build -m production",
|
|
184
|
+
"build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
|
|
185
|
+
"build:aliases": "tsc-alias -p './tsconfig.build.json'",
|
|
186
|
+
"build:analyzer": "BUILD_VISUALIZER='true' vite build -m production",
|
|
187
|
+
"build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
|
|
188
|
+
"preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
|
|
189
|
+
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
|
190
|
+
"stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
|
|
191
|
+
"stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
|
|
192
|
+
"lint": "eslint",
|
|
193
|
+
"lint:fix": "eslint --fix",
|
|
194
|
+
"test": "cross-env FORCE_COLOR=1 vitest run",
|
|
195
|
+
"test:open": "cross-env FORCE_COLOR=1 vitest --ui",
|
|
196
|
+
"semantic-release": "semantic-release",
|
|
197
|
+
"commit": "cz"
|
|
198
|
+
}
|
|
199
|
+
}
|