stream-monaco 0.0.22 → 0.0.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "stream-monaco",
3
3
  "type": "module",
4
- "version": "0.0.22",
5
- "packageManager": "pnpm@10.24.0",
4
+ "version": "0.0.36",
5
+ "packageManager": "pnpm@10.33.2",
6
6
  "description": "A framework-agnostic Monaco Editor integration with Shiki syntax highlighting, built for real-time streaming updates and efficient diff editing.",
7
7
  "author": "Simon He",
8
8
  "license": "MIT",
@@ -35,7 +35,14 @@
35
35
  "preact",
36
36
  "vanilla"
37
37
  ],
38
- "sideEffects": false,
38
+ "sideEffects": [
39
+ "./dist/index.js",
40
+ "./dist/index.cjs",
41
+ "./dist/index.legacy.js",
42
+ "./dist/index.legacy.cjs",
43
+ "./legacy.js",
44
+ "./legacy.cjs"
45
+ ],
39
46
  "exports": {
40
47
  ".": {
41
48
  "import": "./dist/index.js",
@@ -74,7 +81,8 @@
74
81
  "lint": "eslint . --cache",
75
82
  "lint:fix": "pnpm run lint --fix",
76
83
  "prepublishOnly": "pnpm build",
77
- "release": "bumpp --tag \"stream-monaco@%s\" && npm publish",
84
+ "release": "bumpp --tag \"v%s\"",
85
+ "publish:package": "pnpm build && npm publish",
78
86
  "start": "esno src/index.ts",
79
87
  "bench": "node scripts/stream-benchmark.mjs",
80
88
  "bench:playwright": "node scripts/playwright-bench.mjs",
@@ -97,15 +105,15 @@
97
105
  "monaco-editor": "^0.52.2"
98
106
  },
99
107
  "dependencies": {
100
- "@shikijs/monaco": "^3.19.0",
108
+ "@shikijs/monaco": "^3.23.0",
101
109
  "alien-signals": "^2.0.8",
102
- "shiki": "^3.19.0"
110
+ "shiki": "^3.23.0"
103
111
  },
104
112
  "devDependencies": {
105
113
  "@antfu/eslint-config": "^5.4.1",
106
114
  "@types/node": "^18.19.130",
107
115
  "bumpp": "^8.2.1",
108
- "eslint": "^9.39.1",
116
+ "eslint": "^9.39.4",
109
117
  "lint-staged": "^13.3.0",
110
118
  "picocolors": "^1.1.1",
111
119
  "playwright": "1.38.0",