@rhwp/editor 0.6.2 → 0.7.0
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/README.md +34 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -173,6 +173,40 @@ const editor = await createEditor('#editor', {
|
|
|
173
173
|
|
|
174
174
|
이 패키지는 iframe을 통해 rhwp-studio를 임베드하며, 내부적으로 `@rhwp/core` WASM 엔진을 사용합니다.
|
|
175
175
|
|
|
176
|
+
### Rust 크레이트 (WASM 엔진)
|
|
177
|
+
|
|
178
|
+
| 크레이트 | 라이선스 |
|
|
179
|
+
|---------|---------|
|
|
180
|
+
| wasm-bindgen / web-sys / js-sys | MIT OR Apache-2.0 |
|
|
181
|
+
| quick-xml | MIT |
|
|
182
|
+
| cfb | MIT |
|
|
183
|
+
| flate2 | MIT OR Apache-2.0 |
|
|
184
|
+
| encoding_rs | (Apache-2.0 OR MIT) AND BSD-3-Clause |
|
|
185
|
+
| usvg / svg2pdf | Apache-2.0 OR MIT |
|
|
186
|
+
| pdf-writer | MIT OR Apache-2.0 |
|
|
187
|
+
| unicode-segmentation / unicode-width | MIT OR Apache-2.0 |
|
|
188
|
+
| image | MIT OR Apache-2.0 |
|
|
189
|
+
|
|
190
|
+
### 내장 웹 폰트
|
|
191
|
+
|
|
192
|
+
| 폰트 | 라이선스 |
|
|
193
|
+
|------|---------|
|
|
194
|
+
| Pretendard (Regular, Bold) | SIL Open Font License 1.1 |
|
|
195
|
+
| Noto Sans KR (Regular, Bold) | SIL Open Font License 1.1 |
|
|
196
|
+
| Noto Serif KR (Regular, Bold) | SIL Open Font License 1.1 |
|
|
197
|
+
| 나눔고딕 | SIL Open Font License 1.1 |
|
|
198
|
+
| 나눔명조 | SIL Open Font License 1.1 |
|
|
199
|
+
| 고운바탕 | SIL Open Font License 1.1 |
|
|
200
|
+
| 고운돋움 | SIL Open Font License 1.1 |
|
|
201
|
+
| D2Coding | SIL Open Font License 1.1 |
|
|
202
|
+
|
|
203
|
+
### 프론트엔드
|
|
204
|
+
|
|
205
|
+
| 패키지 | 라이선스 |
|
|
206
|
+
|--------|---------|
|
|
207
|
+
| TypeScript | Apache-2.0 |
|
|
208
|
+
| Vite | MIT |
|
|
209
|
+
|
|
176
210
|
전체 목록: [THIRD_PARTY_LICENSES.md](https://github.com/edwardkim/rhwp/blob/main/THIRD_PARTY_LICENSES.md)
|
|
177
211
|
|
|
178
212
|
> 모든 의존성은 MIT 라이선스와 호환됩니다.
|