@kong/markdown 1.7.26-pr.254.f1baa67.0 → 1.7.26

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 +25 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong/markdown",
3
- "version": "1.7.26-pr.254.f1baa67.0",
3
+ "version": "1.7.26",
4
4
  "description": "Kong's open-source markdown renderer and live editor",
5
5
  "keywords": [
6
6
  "markdown",
@@ -32,6 +32,25 @@
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
+ "scripts": {
36
+ "dev": "cross-env USE_SANDBOX=true vite",
37
+ "build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
38
+ "build:package": "vite build -m production",
39
+ "build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
40
+ "build:aliases": "tsc-alias -p './tsconfig.build.json'",
41
+ "build:analyzer": "BUILD_VISUALIZER='core/markdown-ui' vite build -m production",
42
+ "build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
43
+ "preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
44
+ "typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
45
+ "stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
46
+ "stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
47
+ "lint": "eslint",
48
+ "lint:fix": "eslint --fix",
49
+ "test": "cross-env FORCE_COLOR=1 vitest run",
50
+ "test:open": "cross-env FORCE_COLOR=1 vitest --ui",
51
+ "semantic-release": "semantic-release",
52
+ "commit": "cz"
53
+ },
35
54
  "peerDependencies": {
36
55
  "vue": ">= 3.3.13 < 4"
37
56
  },
@@ -56,10 +75,10 @@
56
75
  "markdown-it-task-lists": "^2.1.1",
57
76
  "markdown-it-textual-uml": "^0.17.1",
58
77
  "mermaid": "^11.4.1",
59
- "uuid": "^11.0.4"
78
+ "uuid": "^11.0.5"
60
79
  },
61
80
  "devDependencies": {
62
- "@babel/types": "^7.26.3",
81
+ "@babel/types": "^7.26.5",
63
82
  "@commitlint/cli": "^19.6.1",
64
83
  "@commitlint/config-conventional": "^19.6.0",
65
84
  "@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
@@ -76,7 +95,7 @@
76
95
  "@types/markdown-it-attrs": "^4.1.3",
77
96
  "@types/markdown-it-emoji": "^3.0.1",
78
97
  "@types/markdown-it-footnote": "^3.0.4",
79
- "@types/node": "^22.10.5",
98
+ "@types/node": "^22.10.7",
80
99
  "@types/uuid": "^10.0.0",
81
100
  "@vitejs/plugin-vue": "^5.2.1",
82
101
  "@vitest/ui": "^2.1.8",
@@ -93,7 +112,7 @@
93
112
  "postcss-html": "^1.7.0",
94
113
  "rimraf": "^6.0.1",
95
114
  "rollup-plugin-visualizer": "^5.12.0",
96
- "sass": "^1.83.1",
115
+ "sass": "^1.83.4",
97
116
  "semantic-release": "^24.2.1",
98
117
  "shiki": "^1.25.0",
99
118
  "stylelint": "^16.10.0",
@@ -175,24 +194,5 @@
175
194
  "jiraPrepend": "[",
176
195
  "jiraAppend": "]"
177
196
  }
178
- },
179
- "scripts": {
180
- "dev": "cross-env USE_SANDBOX=true vite",
181
- "build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
182
- "build:package": "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='core/markdown-ui' 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
197
  }
198
- }
198
+ }