@kong/spec-renderer 1.91.4-pr.515.080e8ce.0 → 1.91.4
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 +22 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong/spec-renderer",
|
|
3
|
-
"version": "1.91.4
|
|
3
|
+
"version": "1.91.4",
|
|
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 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
|
},
|
|
@@ -173,25 +193,5 @@
|
|
|
173
193
|
"jiraPrepend": "[",
|
|
174
194
|
"jiraAppend": "]"
|
|
175
195
|
}
|
|
176
|
-
},
|
|
177
|
-
"scripts": {
|
|
178
|
-
"dev": "cross-env USE_SANDBOX=true vite",
|
|
179
|
-
"build": "pnpm run typecheck && pnpm run build:package && pnpm run build:webcomponent && pnpm run build:types && pnpm run build:aliases",
|
|
180
|
-
"build:package": "vite build -m production",
|
|
181
|
-
"build:webcomponent": "cross-env AS_WEB_COMPONENT='true' vite build -m production",
|
|
182
|
-
"build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
|
|
183
|
-
"build:aliases": "tsc-alias -p './tsconfig.build.json'",
|
|
184
|
-
"build:analyzer": "BUILD_VISUALIZER='true' vite build -m production",
|
|
185
|
-
"build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
|
|
186
|
-
"preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
|
|
187
|
-
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
|
188
|
-
"stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
|
|
189
|
-
"stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
|
|
190
|
-
"lint": "eslint",
|
|
191
|
-
"lint:fix": "eslint --fix",
|
|
192
|
-
"test": "cross-env FORCE_COLOR=1 vitest run",
|
|
193
|
-
"test:open": "cross-env FORCE_COLOR=1 vitest --ui",
|
|
194
|
-
"semantic-release": "semantic-release",
|
|
195
|
-
"commit": "cz"
|
|
196
196
|
}
|
|
197
|
-
}
|
|
197
|
+
}
|