@podlite/image 0.0.23 → 0.0.25

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.
Files changed (2) hide show
  1. package/README.md +54 -6
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -22,19 +22,67 @@ Podlite aims to provide users with a means for creativity and expressing ideas i
22
22
 
23
23
  ## Useful links
24
24
 
25
- 📖 _Project site_: [podlite.org](https://podlite.org)
25
+ <div align="center">
26
+ <table border=0><tr><td valign=top><div align="center">
27
+
28
+ ##### specification
29
+
30
+ </div>
31
+
32
+ - [Source](https://github.com/podlite/podlite-specs)
33
+ - [in HTML](https://podlite.org/specification)
34
+ - [Discussions](https://github.com/podlite/podlite-specs/discussions)
35
+
36
+ <div align="center">
37
+
38
+ ##### implementation
39
+
40
+ </div>
41
+
42
+ - [Source](https://github.com/podlite/podlite)
43
+ - [Changelog](https://github.com/podlite/podlite/releases)
44
+ - [Issues](https://github.com/podlite/podlite/issues)
26
45
 
27
- 📌 _Github_: [github.com/podlite](https://github.com/podlite/) 🤩
46
+ </td><td valign=top><div align="center">
28
47
 
29
- 🖥️ _Online editor_: [pod6.in](https://pod6.in/)
48
+ ##### publishing system
30
49
 
31
- 🖥️ _Desktop editor/viewer_: [github.com/podlite/podlite-desktop](https://github.com/podlite/podlite-desktop) - the viewer and editor of `.podlite` and `.pod6` files for Windows, Linux and Mac.
50
+ </div>
51
+
52
+ - [Podlite-web](https://github.com/podlite/podlite-web)
53
+ - [How-to article](https://zahatski.com/2022/8/23/1/start-you-own-blog-site-with-podlite-for-web)
54
+ - [Issues](https://github.com/podlite/podlite-specs/issues)
55
+ - [Changelog](https://github.com/podlite/podlite-web/releases)
56
+ - [Example: Knowledge base for <br/> raku programming language](https://raku-knowledge-base.podlite.org/)
57
+
58
+ </td><td valign=top><div align="center">
59
+
60
+ ##### desktop viewer/editor
61
+
62
+ </div>
63
+
64
+ - [Podlite-desktop](https://github.com/podlite/podlite-desktop)
65
+ - [Releases](https://github.com/podlite/podlite-desktop/releases)
66
+ - [Issues](https://github.com/podlite/podlite-desktop/issues)
32
67
 
33
- 📚 _Podlite for web_ - static site generator: [github.com/podlite/podlite-web](https://github.com/podlite/podlite-web)
68
+ </td><td valign=top><div align="center">
69
+
70
+ ##### online resurces
71
+
72
+ </div>
73
+
74
+ - [podlite.org](https://podlite.org)
75
+ - [pod6.in](https://pod6.in/)
76
+ - [github.com/podlite](https://github.com/podlite/)
77
+ - [Podlite project updates](https://podlite.org/contents)
78
+ - [Funding the ongoing development](https://opencollective.com/podlite)
79
+
80
+ </td></tr></table>
81
+ </div>
34
82
 
35
83
  ## AUTHOR
36
84
 
37
- Copyright (c) 2021-2024 Aliaksandr Zahatski
85
+ Copyright (c) 2021-2025 Aliaksandr Zahatski
38
86
 
39
87
  ## License
40
88
 
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@podlite/image",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "description": "image",
5
5
  "main": "lib/index.js",
6
6
  "license": "MIT",
7
+ "funding": {
8
+ "type": "opencollective",
9
+ "url": "https://opencollective.com/podlite"
10
+ },
7
11
  "scripts": {
8
12
  "clean": "rm -rf dist lib tsconfig.tsbuildinfo",
9
13
  "build": "yarn g:build",
@@ -25,7 +29,7 @@
25
29
  "module": "./esm/index.js"
26
30
  },
27
31
  "dependencies": {
28
- "@podlite/schema": "^0.0.24"
32
+ "@podlite/schema": "^0.0.26"
29
33
  },
30
34
  "peerDependencies": {
31
35
  "react": "^16.0.0 || ^17.0.0 ",