asciidoctor 2.2.5 → 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/README.md +3 -3
- package/package.json +6 -7
- package/types/index.d.ts +3005 -2881
package/README.md
CHANGED
|
@@ -47,13 +47,13 @@ In the spirit of [free software](https://www.gnu.org/philosophy/free-sw.html), _
|
|
|
47
47
|
If you discover errors or omissions in the source code, documentation, or website content, please don't hesitate to submit an issue or open a pull request with a fix.
|
|
48
48
|
New contributors are always welcome!
|
|
49
49
|
|
|
50
|
-
The [Contributing](https://github.com/asciidoctor/asciidoctor.js/blob/
|
|
50
|
+
The [Contributing](https://github.com/asciidoctor/asciidoctor.js/blob/main/CONTRIBUTING.adoc) guide provides information on how to contribute.
|
|
51
51
|
|
|
52
|
-
If you want to write code, the [Contributing Code](https://github.com/asciidoctor/asciidoctor.js/blob/
|
|
52
|
+
If you want to write code, the [Contributing Code](https://github.com/asciidoctor/asciidoctor.js/blob/main/CONTRIBUTING-CODE.adoc) guide will help you to get started quickly.
|
|
53
53
|
|
|
54
54
|
## Copyright
|
|
55
55
|
|
|
56
56
|
Copyright (C) 2019 Dan Allen, Guillaume Grossetie, Anthonny Quérouil and the Asciidoctor Project.
|
|
57
57
|
Free use of this software is granted under the terms of the MIT License.
|
|
58
58
|
|
|
59
|
-
See the [LICENSE](https://github.com/asciidoctor/asciidoctor.js/blob/
|
|
59
|
+
See the [LICENSE](https://github.com/asciidoctor/asciidoctor.js/blob/main/LICENSE) file for details.
|
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",
|
|
@@ -46,10 +45,10 @@
|
|
|
46
45
|
},
|
|
47
46
|
"homepage": "https://github.com/asciidoctor/asciidoctor.js",
|
|
48
47
|
"dependencies": {
|
|
49
|
-
"@asciidoctor/cli": "3.
|
|
50
|
-
"@asciidoctor/core": "
|
|
48
|
+
"@asciidoctor/cli": "3.5.0",
|
|
49
|
+
"@asciidoctor/core": "3.0.0-alpha.2"
|
|
51
50
|
},
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"pkg": "^
|
|
52
|
+
"pkg": "^5.2.1"
|
|
54
53
|
}
|
|
55
54
|
}
|