captions.js 1.0.0

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 +11 -0
  2. package/index.js +5 -0
  3. package/package.json +9 -0
package/ README.md ADDED
@@ -0,0 +1,11 @@
1
+ # my-awesome-package
2
+
3
+ This is a placeholder npm package.
4
+ It currently just exports a simple `hello()` function.
5
+
6
+ ## Usage
7
+
8
+ ```js
9
+ const { hello } = require("my-awesome-package");
10
+ console.log(hello()); // "Hello from my-awesome-package!"
11
+ ```
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ function hello() {
2
+ return "Hello from my-awesome-package!";
3
+ }
4
+
5
+ module.exports = { hello };
package/package.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "captions.js",
3
+ "version": "1.0.0",
4
+ "description": "Minimal placeholder package reserved for future use.",
5
+ "main": "index.js",
6
+ "keywords": ["placeholder", "reserved"],
7
+ "author": "Maksim Mordasov <maskin.m25@gmail.com>",
8
+ "license": "MIT"
9
+ }