shirones-test 0.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 +2 -0
  2. package/index.js +8 -0
  3. package/package.json +12 -0
package/README ADDED
@@ -0,0 +1,2 @@
1
+ # Shirone
2
+ This is a placeholder package. API subject to change.
package/index.js ADDED
@@ -0,0 +1,8 @@
1
+ function notImplemented(name) {
2
+ throw new Error(`shirone.${name} is not implemented yet (placeholder)`);
3
+ }
4
+
5
+ module.exports = {
6
+ hello: () => 'Hello!',
7
+ todo: notImplemented,
8
+ };
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "shirones-test",
3
+ "version": "0.0.0",
4
+ "keywords": [
5
+ "theme",
6
+ "astro",
7
+ "Material Design 3",
8
+ "Material You"
9
+ ],
10
+ "license": "MIT",
11
+ "author": "yCENzh"
12
+ }