@prosekit/basic 0.9.4 → 0.9.5
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 +19 -0
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @prosekit/basic
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@prosekit/basic)
|
|
4
|
+
|
|
5
|
+
A quick starter for [ProseKit](https://prosekit.dev), the toolkit for building rich text editors on the web. `defineBasicExtension()` bundles the most common nodes and marks (paragraphs, headings, bold, italic, lists, and more), so you can spin up a working editor in a single call.
|
|
6
|
+
|
|
7
|
+
> **Note:** This package is bundled into the main [`prosekit`](https://www.npmjs.com/package/prosekit) package. Most users should install `prosekit` and import from `prosekit/basic` instead of depending on this package directly.
|
|
8
|
+
|
|
9
|
+
## Documentation
|
|
10
|
+
|
|
11
|
+
See the [`prosekit/basic` reference](https://prosekit.dev/references/basic) and the [Quick Start](https://prosekit.dev/getting-started/quick-start) on [prosekit.dev](https://prosekit.dev).
|
|
12
|
+
|
|
13
|
+
## Sponsors
|
|
14
|
+
|
|
15
|
+
<p align="center"><a href="https://github.com/sponsors/ocavue"><img src="https://cdn.jsdelivr.net/gh/ocavue/sponsors/sponsorkit/sponsors.svg" alt="My Sponsors"></a></p>
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
[MIT](https://github.com/prosekit/prosekit/blob/master/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosekit/basic",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.5",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "A quick starter for ProseKit",
|
|
7
7
|
"author": {
|
|
@@ -42,21 +42,21 @@
|
|
|
42
42
|
"src"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@prosekit/
|
|
46
|
-
"@prosekit/
|
|
47
|
-
"@prosekit/
|
|
45
|
+
"@prosekit/core": "^0.12.3",
|
|
46
|
+
"@prosekit/extensions": "^0.17.4",
|
|
47
|
+
"@prosekit/pm": "^0.1.18"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/jsdom": "^28.0.3",
|
|
51
|
-
"happy-dom": "^20.
|
|
51
|
+
"happy-dom": "^20.10.1",
|
|
52
52
|
"jsdom": "^29.1.1",
|
|
53
|
-
"sass": "^1.
|
|
54
|
-
"tsdown": "^0.22.
|
|
53
|
+
"sass": "^1.100.0",
|
|
54
|
+
"tsdown": "^0.22.1",
|
|
55
55
|
"typescript": "~6.0.3",
|
|
56
|
-
"vitest": "^4.1.
|
|
57
|
-
"@prosekit/config-
|
|
56
|
+
"vitest": "^4.1.8",
|
|
57
|
+
"@prosekit/config-ts": "0.0.0",
|
|
58
58
|
"@prosekit/config-vitest": "0.0.0",
|
|
59
|
-
"@prosekit/config-
|
|
59
|
+
"@prosekit/config-tsdown": "0.0.0"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"dev": "sass --watch --no-source-map ./src/typography.scss ./src/typography.gen.css",
|