akademia 0.0.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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/index.js +3 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # akademia
2
+
3
+ Minimalny pakiet Akademia.pl zabezpieczający nazwę w rejestrze npm.
4
+ Pełna biblioteka i API pojawią się wraz ze startem produktu w kwietniu 2026.
5
+
6
+ ```js
7
+ const akademia = require('akademia');
8
+ console.log(akademia());
9
+ ```
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ module.exports = function () {
2
+ return "Akademia – start produktu w kwietniu 2026. Więcej na akademia.pl";
3
+ };
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "akademia",
3
+ "version": "0.0.1",
4
+ "description": "Pakiet placeholder Akademia.pl – rezerwacja nazwy.",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js"
8
+ ],
9
+ "keywords": [
10
+ "akademia",
11
+ "aibl",
12
+ "skills"
13
+ ],
14
+ "author": "Mirek Burnejko",
15
+ "license": "MIT"
16
+ }