package-x 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/index.cjs +2 -0
  2. package/index.js +3 -0
  3. package/package.json +22 -0
package/index.cjs ADDED
@@ -0,0 +1,2 @@
1
+ // Love is the secret ingredient
2
+ module.exports = "Love";
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ // Love is the secret ingredient
2
+ const secretIngredient = "Love";
3
+ export default secretIngredient;
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "package-x",
3
+ "version": "1.0.0",
4
+ "main": "index.js",
5
+ "description": "The secret ingredient to your project: Package X",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "exports": {
10
+ ".": {
11
+ "import": "./index.js",
12
+ "require": "./index.cjs"
13
+ }
14
+ },
15
+ "files": [
16
+ "index.js",
17
+ "index.cjs"
18
+ ],
19
+ "keywords": [],
20
+ "author": "",
21
+ "license": "ISC"
22
+ }