@kong/markdown 1.7.34 → 1.7.35-pr.285.9693780.0

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 +28 -29
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong/markdown",
3
- "version": "1.7.34",
3
+ "version": "1.7.35-pr.285.9693780.0",
4
4
  "description": "Kong's open-source markdown renderer and live editor",
5
5
  "keywords": [
6
6
  "markdown",
@@ -33,25 +33,6 @@
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
- },
55
36
  "peerDependencies": {
56
37
  "vue": ">= 3.3.13 < 4"
57
38
  },
@@ -130,12 +111,6 @@
130
111
  "vue": "^3.5.13",
131
112
  "vue-tsc": "^2.1.10"
132
113
  },
133
- "pnpm": {
134
- "onlyBuiltDependencies": [
135
- "@evilmartians/lefthook",
136
- "esbuild"
137
- ]
138
- },
139
114
  "repository": {
140
115
  "type": "git",
141
116
  "url": "git+https://github.com/Kong/markdown.git"
@@ -172,7 +147,12 @@
172
147
  "changelogFile": "CHANGELOG.md"
173
148
  }
174
149
  ],
175
- "@semantic-release/npm",
150
+ [
151
+ "@semantic-release/npm",
152
+ {
153
+ "npmPublish": false
154
+ }
155
+ ],
176
156
  [
177
157
  "@semantic-release/git",
178
158
  {
@@ -189,7 +169,7 @@
189
169
  "node": ">=18.17.0"
190
170
  },
191
171
  "volta": {
192
- "node": "22.12.0",
172
+ "node": "24.6.0",
193
173
  "pnpm": "9.14.4"
194
174
  },
195
175
  "config": {
@@ -201,5 +181,24 @@
201
181
  "jiraPrepend": "[",
202
182
  "jiraAppend": "]"
203
183
  }
184
+ },
185
+ "scripts": {
186
+ "dev": "cross-env USE_SANDBOX=true vite",
187
+ "build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
188
+ "build:package": "vite build -m production",
189
+ "build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
190
+ "build:aliases": "tsc-alias -p './tsconfig.build.json'",
191
+ "build:analyzer": "BUILD_VISUALIZER='core/markdown-ui' vite build -m production",
192
+ "build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
193
+ "preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
194
+ "typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
195
+ "stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
196
+ "stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
197
+ "lint": "eslint",
198
+ "lint:fix": "eslint --fix",
199
+ "test": "cross-env FORCE_COLOR=1 vitest run",
200
+ "test:open": "cross-env FORCE_COLOR=1 vitest --ui",
201
+ "semantic-release": "semantic-release",
202
+ "commit": "cz"
204
203
  }
205
- }
204
+ }