Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ __generated__/
dist/
temp/
tmp/
playwright-report/
test-results/

# Created by https://www.toptal.com/developers/gitignore/api/windows
# Edit at https://www.toptal.com/developers/gitignore?templates=windows
Expand Down Expand Up @@ -445,8 +447,6 @@ web_modules/

# Next.js build output
.next
playwright-report/
test-results/
out

# Nuxt.js build / generate output
Expand Down
2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ npmPreapprovedPackages:
- '@exercode/*'
- '@willbooster/*'
- agent-runtime-kit
- at-decorators
- build-ts
- gen-i18n-ts
- one-way-git-sync
- next
- '@next/*'
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# @willbooster/monaco-react

[![Test](https://github.com/WillBooster/monaco-react/actions/workflows/test.yml/badge.svg)](https://github.com/WillBooster/monaco-react/actions/workflows/test.yml)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![monthly downloads](https://img.shields.io/npm/dm/@willbooster/monaco-react)](https://www.npmjs.com/package/@willbooster/monaco-react)
[![npm version](https://img.shields.io/npm/v/@willbooster/monaco-react.svg?style=flat)](https://www.npmjs.com/package/@willbooster/monaco-react)
[![Test](https://github.com/WillBooster/monaco-react/actions/workflows/test.yml/badge.svg)](https://github.com/WillBooster/monaco-react/actions/workflows/test.yml)

React components for [Monaco Editor](https://microsoft.github.io/monaco-editor/), powered by [`@willbooster/monaco-loader`](https://github.com/WillBooster/monaco-loader).

Expand Down
14 changes: 4 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,20 @@
"check-all-for-ai": "yarn check-for-ai && yarn test",
"check-for-ai": "yarn install > /dev/null && yarn format > /dev/null 2> /dev/null || true && yarn lint-fix --quiet",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn format-code && yarn prettify",
"format": "sort-package-json && yarn format-code",
"format-code": "oxfmt --write --no-error-on-unmatched-pattern .",
"lint": "oxlint --no-error-on-unmatched-pattern .",
"lint-fix": "yarn lint --fix",
"prepare": "lefthook install || true",
"prettify": "prettier --cache --color --no-error-on-unmatched-pattern --write \"**/{.*/,}*.{java}\" \"!**/test{-,/}fixtures/**\" || true",
"test": "yarn test:unit && yarn test:e2e:next",
"test:e2e:next": "yarn build && next build e2e/next-app && playwright test --config e2e/next-app/playwright.config.ts",
"test:unit": "vitest",
"test/ci-setup": "playwright install chromium",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
Comment thread
exKAZUu marked this conversation as resolved.
"@willbooster/monaco-loader": "1.0.1"
"@willbooster/monaco-loader": "1.1.1",
"monaco-editor": "0.55.1"
},
"devDependencies": {
"@playwright/test": "1.59.1",
Expand All @@ -67,20 +67,16 @@
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260417.1",
"@typescript/native-preview": "7.0.0-dev.20260418.1",
"@willbooster/oxfmt-config": "1.2.1",
"@willbooster/oxlint-config": "1.4.4",
"@willbooster/prettier-config": "10.4.0",
"conventional-changelog-conventionalcommits": "9.3.1",
"jsdom": "29.0.2",
"lefthook": "2.1.5",
"monaco-editor": "0.55.1",
"next": "16.2.4",
"oxfmt": "0.45.0",
"oxlint": "1.60.0",
"oxlint-tsgolint": "0.21.0",
"prettier": "3.8.2",
"prettier-plugin-java": "2.8.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"semantic-release": "25.0.3",
Expand All @@ -90,11 +86,9 @@
"vitest": "4.1.4"
},
"peerDependencies": {
"monaco-editor": "^0.55.1",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"prettier": "@willbooster/prettier-config",
"engines": {
"node": ">=24"
},
Expand Down
Loading
Loading