@gjsify/empty 0.0.2

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.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @gjsify/empty
2
+
3
+ Just an empty module, used to resolve modules that are not needed
package/index.cjs ADDED
@@ -0,0 +1 @@
1
+ module.exports = {};
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {}
package/index.js ADDED
@@ -0,0 +1 @@
1
+ export {}
package/index.mjs ADDED
@@ -0,0 +1 @@
1
+ export {}
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@gjsify/empty",
3
+ "version": "0.0.2",
4
+ "description": "Empty module for Gjs",
5
+ "main": "index.cjs",
6
+ "module": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "scripts": {
9
+ "clear": "echo 'Noting to do'",
10
+ "print:name": "echo '@gjsify/empty'",
11
+ "build": "yarn print:name && echo 'Noting to do'",
12
+ "test": "yarn print:name && echo 'Noting to do'"
13
+ },
14
+ "keywords": [
15
+ "gjs",
16
+ "empty"
17
+ ]
18
+ }