-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
196 lines (196 loc) · 5.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"name": "@kong/markdown",
"version": "1.7.17",
"description": "Kong's open-source markdown renderer and live editor",
"keywords": [
"markdown",
"markdown-it",
"vue",
"editor",
"markdown editor",
"markdown renderer"
],
"license": "Apache-2.0",
"type": "module",
"main": "./dist/kong-markdown.umd.js",
"module": "./dist/kong-markdown.es.js",
"files": [
"dist"
],
"types": "dist/types/index.d.ts",
"typings": "dist/types",
"exports": {
".": {
"import": "./dist/kong-markdown.es.js",
"require": "./dist/kong-markdown.umd.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "cross-env USE_SANDBOX=true vite",
"build": "pnpm run typecheck && pnpm run build:package && pnpm run build:types && pnpm run build:aliases",
"build:package": "vite build -m production",
"build:types": "vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly",
"build:aliases": "tsc-alias -p './tsconfig.build.json'",
"build:analyzer": "BUILD_VISUALIZER='core/markdown-ui' vite build -m production",
"build:sandbox": "cross-env USE_SANDBOX=true vite build -m production",
"preview": "pnpm run build:sandbox && cross-env USE_SANDBOX=true vite preview",
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
"stylelint": "stylelint --allow-empty-input './src/**/*.{css,scss,vue}'",
"stylelint:fix": "stylelint --allow-empty-input './src/**/*.{css,scss,sass,vue}' --fix",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "cross-env FORCE_COLOR=1 vitest run",
"test:open": "cross-env FORCE_COLOR=1 vitest --ui",
"semantic-release": "semantic-release",
"commit": "cz"
},
"peerDependencies": {
"vue": ">= 3.3.13 < 4"
},
"dependencies": {
"@kong/icons": "^1.19.1",
"@mdit-vue/plugin-frontmatter": "^2.1.3",
"@sindresorhus/slugify": "^2.2.1",
"@vueuse/core": "^11.2.0",
"buffer": "^6.0.3",
"html-format": "^1.1.7",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-textual-uml": "^0.17.1",
"mermaid": "^11.4.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/types": "^7.26.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@evilmartians/lefthook": "^1.8.2",
"@kong/design-tokens": "^1.17.2",
"@kong/eslint-config-kong-ui": "^1.1.2",
"@mdit-vue/types": "^2.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@shikijs/markdown-it": "^1.22.2",
"@stylistic/stylelint-plugin": "^2.1.3",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-attrs": "^4.1.3",
"@types/markdown-it-emoji": "^3.0.1",
"@types/markdown-it-footnote": "^3.0.4",
"@types/node": "^20.17.6",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/ui": "^2.1.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"c8": "^10.1.2",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.14.0",
"jsdom": "^24.1.3",
"postcss": "^8.4.47",
"postcss-html": "^1.7.0",
"rimraf": "^5.0.10",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.6",
"semantic-release": "^24.2.0",
"shiki": "^1.22.2",
"stylelint": "^16.10.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-order": "^6.0.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.6.2",
"vitest": "2.1.4",
"vue": "^3.5.12",
"vue-tsc": "^2.1.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kong/markdown.git"
},
"homepage": "https://github.com/Kong/markdown",
"bugs": {
"url": "https://github.com/Kong/markdown/issues"
},
"author": {
"name": "Kong Inc.",
"url": "https://konghq.com/"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
]
}
],
"@semantic-release/github"
]
},
"engines": {
"node": ">=18.17.0"
},
"volta": {
"node": "20.18.0",
"pnpm": "9.12.3"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false,
"jiraOptional": true,
"jiraLocation": "post-description",
"jiraPrepend": "[",
"jiraAppend": "]"
}
}
}