@kong/spec-renderer 1.104.3-pr.799.4ff8a13.0 → 1.104.3
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 +55 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong/spec-renderer",
|
|
3
|
-
"version": "1.104.3
|
|
3
|
+
"version": "1.104.3",
|
|
4
4
|
"description": "Kong's open-source spec renderer",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -29,6 +29,26 @@
|
|
|
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
|
+
},
|
|
32
52
|
"peerDependencies": {
|
|
33
53
|
"vue": ">= 3.3.13 < 4"
|
|
34
54
|
},
|
|
@@ -109,6 +129,39 @@
|
|
|
109
129
|
"vue-router": "^4.6.4",
|
|
110
130
|
"vue-tsc": "^3.2.4"
|
|
111
131
|
},
|
|
132
|
+
"pnpm": {
|
|
133
|
+
"onlyBuiltDependencies": [
|
|
134
|
+
"@evilmartians/lefthook",
|
|
135
|
+
"@parcel/watcher",
|
|
136
|
+
"esbuild",
|
|
137
|
+
"vue-demi"
|
|
138
|
+
],
|
|
139
|
+
"overrides": {
|
|
140
|
+
"openapi3-ts": "4.5.0",
|
|
141
|
+
"jsonpath-plus@<10.3.0": ">=10.3.0",
|
|
142
|
+
"elliptic@<=6.6.0": ">=6.6.1",
|
|
143
|
+
"@babel/helpers@<7.26.10": ">=7.28.6",
|
|
144
|
+
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.6",
|
|
145
|
+
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
|
|
146
|
+
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2",
|
|
147
|
+
"pbkdf2@<=3.1.2": ">=3.1.5",
|
|
148
|
+
"sha.js@<=2.4.11": ">=2.4.12",
|
|
149
|
+
"cipher-base@<=1.0.4": ">=1.0.7",
|
|
150
|
+
"tmp@<=0.2.3": ">=0.2.5",
|
|
151
|
+
"form-data@>=4.0.0 <4.0.4": ">=4.0.5",
|
|
152
|
+
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
|
|
153
|
+
"glob@>=10.2.0 <10.5.0": ">=13.0.0",
|
|
154
|
+
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
|
|
155
|
+
"undici@<6.23.0": ">=6.23.0",
|
|
156
|
+
"undici@>=7.0.0 <7.18.2": ">=7.18.2",
|
|
157
|
+
"diff@>=4.0.0 <4.0.4": ">=4.0.4",
|
|
158
|
+
"@isaacs/brace-expansion@<=5.0.0": ">=5.0.1",
|
|
159
|
+
"mdast-util-to-hast@>=13.0.0 <13.2.1": ">=13.2.1",
|
|
160
|
+
"qs@>=6.7.0 <=6.14.1": ">=6.14.2",
|
|
161
|
+
"markdown-it@>=13.0.0 <14.1.1": ">=14.1.1",
|
|
162
|
+
"minimatch@<10.2.1": ">=10.2.1"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
112
165
|
"repository": {
|
|
113
166
|
"type": "git",
|
|
114
167
|
"url": "git+https://github.com/Kong/spec-renderer.git"
|
|
@@ -174,25 +227,5 @@
|
|
|
174
227
|
"jiraPrepend": "[",
|
|
175
228
|
"jiraAppend": "]"
|
|
176
229
|
}
|
|
177
|
-
},
|
|
178
|
-
"scripts": {
|
|
179
|
-
"dev": "cross-env USE_SANDBOX=true vite",
|
|
180
|
-
"build": "pnpm run typecheck && pnpm run build:package && pnpm run build:webcomponent && pnpm run build:types && pnpm run build:aliases",
|
|
181
|
-
"build:package": "vite build -m production",
|
|
182
|
-
"build:webcomponent": "cross-env VITE_AS_WEB_COMPONENT='true' vite build -m production",
|
|
183
|
-
"build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
|
|
184
|
-
"build:aliases": "tsc-alias -p './tsconfig.build.json'",
|
|
185
|
-
"build:analyzer": "BUILD_VISUALIZER='true' vite build -m production",
|
|
186
|
-
"build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
|
|
187
|
-
"preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
|
|
188
|
-
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
|
189
|
-
"stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
|
|
190
|
-
"stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
|
|
191
|
-
"lint": "eslint",
|
|
192
|
-
"lint:fix": "eslint --fix",
|
|
193
|
-
"test": "cross-env FORCE_COLOR=1 vitest run",
|
|
194
|
-
"test:open": "cross-env FORCE_COLOR=1 vitest --ui",
|
|
195
|
-
"semantic-release": "semantic-release",
|
|
196
|
-
"commit": "cz"
|
|
197
230
|
}
|
|
198
|
-
}
|
|
231
|
+
}
|