forked from suren-atoyan/monaco-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.9 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.9 KB
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
{
"name": "@willbooster/monaco-react",
"version": "0.0.0-semantically-released",
"description": "Monaco Editor for React - use the monaco-editor in any React application without needing to use webpack (or rollup/parcel/etc) configuration files / plugins",
"keywords": [
"code",
"editor",
"monaco",
"react",
"text",
"vscode"
],
"homepage": "https://github.com/WillBooster/monaco-react#readme",
"bugs": {
"url": "https://github.com/WillBooster/monaco-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WillBooster/monaco-react.git"
},
"license": "MIT",
"author": "WillBooster Inc.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "yarn run build/core",
"build/core": "build-ts lib",
"cleanup": "yarn format && yarn lint-fix",
"common/ci-setup": "yarn run build/core",
"format": "sort-package-json && yarn format-code",
"format-code": "oxfmt --write --no-error-on-unmatched-pattern . '!**/package.json'",
"lint": "oxlint --no-error-on-unmatched-pattern .",
"lint-fix": "yarn lint --fix",
"prepare": "lefthook install || 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": "wb typecheck",
"verify": "wb verify",
"verify-full": "wb verify --full"
},
"dependencies": {
"@willbooster/monaco-loader": "1.1.1",
"monaco-editor": "0.55.1"
},
"devDependencies": {
"@playwright/test": "1.59.1",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@tsconfig/node-lts": "24.0.0",
"@tsconfig/node-ts": "23.6.4",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260421.2",
"@willbooster/oxfmt-config": "1.2.2",
"@willbooster/oxlint-config": "1.4.6",
"@willbooster/wb": "13.12.15",
"build-ts": "17.1.12",
"conventional-changelog-conventionalcommits": "9.3.1",
"jsdom": "29.0.2",
"lefthook": "2.1.5",
"next": "16.2.4",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"oxlint-tsgolint": "0.22.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"semantic-release": "25.0.3",
"sort-package-json": "3.6.1",
"vitest": "4.1.4"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"packageManager": "yarn@4.14.1",
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public"
}
}