@kong/markdown 1.9.9-pr.371.e4b12ec.0 → 1.9.9
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 +35 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kong/markdown",
|
|
3
|
-
"version": "1.9.9
|
|
3
|
+
"version": "1.9.9",
|
|
4
4
|
"description": "Kong's open-source markdown renderer and live editor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown",
|
|
@@ -33,6 +33,25 @@
|
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"dev": "cross-env USE_SANDBOX=true vite",
|
|
38
|
+
"build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
|
|
39
|
+
"build:package": "vite build -m production",
|
|
40
|
+
"build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
|
|
41
|
+
"build:aliases": "tsc-alias -p './tsconfig.build.json'",
|
|
42
|
+
"build:analyzer": "BUILD_VISUALIZER='core/markdown-ui' vite build -m production",
|
|
43
|
+
"build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
|
|
44
|
+
"preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
|
|
45
|
+
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
|
46
|
+
"stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
|
|
47
|
+
"stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
|
|
48
|
+
"lint": "eslint",
|
|
49
|
+
"lint:fix": "eslint --fix",
|
|
50
|
+
"test": "cross-env FORCE_COLOR=1 vitest run",
|
|
51
|
+
"test:open": "cross-env FORCE_COLOR=1 vitest --ui",
|
|
52
|
+
"semantic-release": "semantic-release",
|
|
53
|
+
"commit": "cz"
|
|
54
|
+
},
|
|
36
55
|
"peerDependencies": {
|
|
37
56
|
"vue": ">= 3.3.13 < 4"
|
|
38
57
|
},
|
|
@@ -111,6 +130,20 @@
|
|
|
111
130
|
"vue": "^3.5.34",
|
|
112
131
|
"vue-tsc": "^3.2.9"
|
|
113
132
|
},
|
|
133
|
+
"pnpm": {
|
|
134
|
+
"onlyBuiltDependencies": [
|
|
135
|
+
"@evilmartians/lefthook",
|
|
136
|
+
"esbuild"
|
|
137
|
+
],
|
|
138
|
+
"overrides": {
|
|
139
|
+
"braces@<3.0.3": ">=3.0.3",
|
|
140
|
+
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.6",
|
|
141
|
+
"glob@>=10.2.0 <10.5.0": ">=10.5.0",
|
|
142
|
+
"@modelcontextprotocol/sdk@>=1.10.0 <=1.25.3": ">=1.26.0",
|
|
143
|
+
"handlebars": ">=4.7.9",
|
|
144
|
+
"lodash": ">=4.18.0"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
114
147
|
"repository": {
|
|
115
148
|
"type": "git",
|
|
116
149
|
"url": "git+https://github.com/Kong/markdown.git"
|
|
@@ -176,24 +209,5 @@
|
|
|
176
209
|
"jiraPrepend": "[",
|
|
177
210
|
"jiraAppend": "]"
|
|
178
211
|
}
|
|
179
|
-
},
|
|
180
|
-
"scripts": {
|
|
181
|
-
"dev": "cross-env USE_SANDBOX=true vite",
|
|
182
|
-
"build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
|
|
183
|
-
"build:package": "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='core/markdown-ui' 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
212
|
}
|
|
199
|
-
}
|
|
213
|
+
}
|