Skip to content

Commit 552235b

Browse files
committed
Add missing dependencies: @shikijs/langs and @shikijs/themes
1 parent 9c41cc2 commit 552235b

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

bun.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"name": "codemirror-json-schema",
77
"dependencies": {
88
"@sagold/json-pointer": "^7.2.0",
9+
"@shikijs/langs": "^3.15.0",
910
"@shikijs/markdown-it": "^3.15.0",
11+
"@shikijs/themes": "^3.15.0",
1012
"best-effort-json-parser": "^1.1.2",
1113
"json-schema": "^0.4.0",
1214
"json-schema-library": "^10.4.2",

package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "codemirror-json-schema",
2+
"name": "codemirror-json-schema-refined",
33
"license": "MIT",
4-
"version": "0.8.1",
4+
"version": "0.8.2",
55
"description": "Codemirror 6 extensions that provide full JSONSchema support for `@codemirror/lang-json` and `codemirror-json5`",
66
"contributors": [
77
{
@@ -11,6 +11,10 @@
1111
{
1212
"name": "Rikki Schulte",
1313
"url": "https://rikki.dev"
14+
},
15+
{
16+
"name": "Yusing",
17+
"url": "https://github.com/yusing"
1418
}
1519
],
1620
"keywords": [
@@ -58,7 +62,9 @@
5862
"homepage": "https://codemirror-json-schema.netlify.app/",
5963
"dependencies": {
6064
"@sagold/json-pointer": "^7.2.0",
65+
"@shikijs/langs": "^3.15.0",
6166
"@shikijs/markdown-it": "^3.15.0",
67+
"@shikijs/themes": "^3.15.0",
6268
"best-effort-json-parser": "^1.1.2",
6369
"json-schema": "^0.4.0",
6470
"json-schema-library": "^10.4.2",
@@ -112,12 +118,12 @@
112118
},
113119
"scripts": {
114120
"dev": "vite ./dev --port 3000",
115-
"build": "bun tsc && tsc --module commonjs --outDir cjs && vite build ./dev --outDir ../public --emptyOutDir",
121+
"build": "bun tsc && bun tsc --module commonjs --outDir cjs && bun vite build ./dev --outDir ../public --emptyOutDir",
116122
"test": "vitest --dom",
117123
"test:coverage": "vitest run --dom --coverage ",
118124
"tsc": "tsc && bun replace:env",
119125
"version-packages": "changeset version && bun typedoc && bun prettier:write CHANGELOG.md && git add package.json bun-lock.yaml CHANGELOG.md",
120-
"release": "bun build && changeset publish",
126+
"release": "bun run build && changeset publish",
121127
"typedoc": "typedoc --out docs src/index.ts src/json5.ts && bun prettier:write docs/**/*",
122128
"prettier:write": "prettier --ignore-path .gitignore --write",
123129
"replace:env": "sh scripts/replace-env.sh"

0 commit comments

Comments
 (0)