@reactwright/template-essay 0.1.0 → 0.1.1
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 +16 -10
- package/src/template.tsx +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reactwright/template-essay",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MLA-style academic essay template for the Reactwright document engine.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Reactwright contributors",
|
|
@@ -13,7 +13,13 @@
|
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/PurpleReverie/reactwright/issues"
|
|
15
15
|
},
|
|
16
|
-
"keywords": [
|
|
16
|
+
"keywords": [
|
|
17
|
+
"reactwright",
|
|
18
|
+
"template",
|
|
19
|
+
"essay",
|
|
20
|
+
"academic",
|
|
21
|
+
"mla"
|
|
22
|
+
],
|
|
17
23
|
"type": "module",
|
|
18
24
|
"exports": {
|
|
19
25
|
".": {
|
|
@@ -26,18 +32,18 @@
|
|
|
26
32
|
"LICENSE",
|
|
27
33
|
"README.md"
|
|
28
34
|
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"check": "tsc --noEmit"
|
|
31
|
-
},
|
|
32
35
|
"peerDependencies": {
|
|
33
|
-
"
|
|
34
|
-
"
|
|
36
|
+
"react": "^18 || ^19",
|
|
37
|
+
"reactwright": "0.1.0"
|
|
35
38
|
},
|
|
36
39
|
"devDependencies": {
|
|
37
40
|
"@types/node": "^22.15.18",
|
|
38
41
|
"@types/react": "^19.1.2",
|
|
39
42
|
"react": "^19.1.0",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
43
|
+
"typescript": "^5.8.3",
|
|
44
|
+
"reactwright": "0.1.0"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"check": "tsc --noEmit"
|
|
42
48
|
}
|
|
43
|
-
}
|
|
49
|
+
}
|
package/src/template.tsx
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import "reactwright/jsx";
|
|
2
|
-
import
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { Bibliography } from "reactwright/userland";
|
|
3
4
|
|
|
4
5
|
// MLA-style academic essay template, packaged as a reusable module.
|
|
5
6
|
// Templates that want the same essay styling can:
|