asciidoctor 2.2.6 → 3.0.0-alpha.2
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 +5 -6
- package/types/index.d.ts +3006 -2901
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "asciidoctor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.2",
|
|
4
4
|
"description": "A JavaScript AsciiDoc processor, cross-compiled from the Ruby-based AsciiDoc implementation, Asciidoctor, using Opal",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "types",
|
|
@@ -13,9 +13,8 @@
|
|
|
13
13
|
"dist": "pkg package.json --out-path dist"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
|
-
"node": ">=
|
|
17
|
-
"npm": ">=
|
|
18
|
-
"yarn": ">=1.1.0"
|
|
16
|
+
"node": ">=16",
|
|
17
|
+
"npm": ">=8"
|
|
19
18
|
},
|
|
20
19
|
"files": [
|
|
21
20
|
"bin",
|
|
@@ -47,9 +46,9 @@
|
|
|
47
46
|
"homepage": "https://github.com/asciidoctor/asciidoctor.js",
|
|
48
47
|
"dependencies": {
|
|
49
48
|
"@asciidoctor/cli": "3.5.0",
|
|
50
|
-
"@asciidoctor/core": "
|
|
49
|
+
"@asciidoctor/core": "3.0.0-alpha.2"
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"pkg": "5.2.1"
|
|
52
|
+
"pkg": "^5.2.1"
|
|
54
53
|
}
|
|
55
54
|
}
|