@kong/markdown 1.7.32 → 1.7.33-pr.277.8c00481.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 +21 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kong/markdown",
3
- "version": "1.7.32",
3
+ "version": "1.7.33-pr.277.8c00481.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"
@@ -201,5 +176,24 @@
201
176
  "jiraPrepend": "[",
202
177
  "jiraAppend": "]"
203
178
  }
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"
204
198
  }
205
- }
199
+ }