@kong/markdown 1.9.8-pr.359.fea2aef.0 → 1.9.8

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.
Files changed (1) hide show
  1. package/package.json +34 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong/markdown",
3
- "version": "1.9.8-pr.359.fea2aef.0",
3
+ "version": "1.9.8",
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
  },
@@ -112,6 +131,19 @@
112
131
  "vue": "^3.5.29",
113
132
  "vue-tsc": "^2.2.12"
114
133
  },
134
+ "pnpm": {
135
+ "onlyBuiltDependencies": [
136
+ "@evilmartians/lefthook",
137
+ "esbuild"
138
+ ],
139
+ "overrides": {
140
+ "braces@<3.0.3": ">=3.0.3",
141
+ "cross-spawn@>=7.0.0 <7.0.5": ">=7.0.6",
142
+ "glob@>=10.2.0 <10.5.0": ">=10.5.0",
143
+ "@modelcontextprotocol/sdk@>=1.10.0 <=1.25.3": ">=1.26.0",
144
+ "handlebars": ">=4.7.9"
145
+ }
146
+ },
115
147
  "repository": {
116
148
  "type": "git",
117
149
  "url": "git+https://github.com/Kong/markdown.git"
@@ -177,24 +209,5 @@
177
209
  "jiraPrepend": "[",
178
210
  "jiraAppend": "]"
179
211
  }
180
- },
181
- "scripts": {
182
- "dev": "cross-env USE_SANDBOX=true vite",
183
- "build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
184
- "build:package": "vite build -m production",
185
- "build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
186
- "build:aliases": "tsc-alias -p './tsconfig.build.json'",
187
- "build:analyzer": "BUILD_VISUALIZER='core/markdown-ui' vite build -m production",
188
- "build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
189
- "preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
190
- "typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
191
- "stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
192
- "stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
193
- "lint": "eslint",
194
- "lint:fix": "eslint --fix",
195
- "test": "cross-env FORCE_COLOR=1 vitest run",
196
- "test:open": "cross-env FORCE_COLOR=1 vitest --ui",
197
- "semantic-release": "semantic-release",
198
- "commit": "cz"
199
212
  }
200
- }
213
+ }