Skip to content

Commit

Permalink
chore: Move non runtime packages to dev dependencies (#139)
Browse files Browse the repository at this point in the history
I noticed these packages were bringing in some extra dependencies of
their own but seem unused except for internal development.
  • Loading branch information
NickTomlin authored Sep 7, 2024
1 parent 5806807 commit bfbe613
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 29 deletions.
5 changes: 5 additions & 0 deletions .changeset/sixty-pillows-work.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"codemirror-json-schema": patch
---

Move non essential packages to devDependencies
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,13 @@
"repository": "github:acao/codemirror-json-schema",
"homepage": "https://codemirror-json-schema.netlify.app/",
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@sagold/json-pointer": "^5.1.1",
"@shikijs/markdown-it": "^1.1.7",
"@types/json-schema": "^7.0.12",
"@types/node": "^20.4.2",
"best-effort-json-parser": "^1.1.2",
"json-schema": "^0.4.0",
"json-schema-library": "^9.3.5",
"loglevel": "^1.9.1",
"markdown-it": "^14.0.0",
"vite-tsconfig-paths": "^4.3.1",
"yaml": "^2.3.4"
},
"optionalDependencies": {
Expand All @@ -85,6 +81,9 @@
"@lezer/common": "^1.2.1"
},
"devDependencies": {
"@types/json-schema": "^7.0.12",
"@types/node": "^20.4.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@codemirror/autocomplete": "^6.16.2",
"@codemirror/commands": "^6.6.0",
Expand All @@ -105,7 +104,8 @@
"typescript": "^5.1.6",
"vite": "^5.2.12",
"vitest": "0.34.6",
"vitest-dom": "^0.1.0"
"vitest-dom": "^0.1.0",
"vite-tsconfig-paths": "^4.3.1"
},
"scripts": {
"dev": "vite ./dev --port 3000",
Expand Down
Loading

0 comments on commit bfbe613

Please sign in to comment.