next-staticblog 0.1.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 +3 -0
  2. package/index.js +3 -0
  3. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # next-blog
2
+
3
+ none
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export function hello(name) {
2
+ return `Hello blog, ${name}!`;
3
+ }
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "next-staticblog",
3
+ "version": "0.1.0",
4
+ "description": "",
5
+ "license": "MIT",
6
+ "author": "twyd",
7
+ "type": "module",
8
+ "main": "index.js",
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ }
12
+ }