create-cordisx-plugin 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.md +5 -0
  2. package/cli.js +3 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # create-cordisx-plugin
2
+
3
+ This is the official npm package name reserved by the CordisX project.
4
+
5
+ The public plugin scaffolder is being prepared at <https://github.com/cordisx/cordisx>.
package/cli.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('The CordisX plugin scaffolder is being prepared: https://github.com/cordisx/cordisx')
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "create-cordisx-plugin",
3
+ "version": "0.0.0",
4
+ "description": "Official CordisX plugin scaffolder package name reservation. Public release is in preparation.",
5
+ "type": "module",
6
+ "bin": {
7
+ "create-cordisx-plugin": "./cli.js"
8
+ },
9
+ "files": [
10
+ "cli.js",
11
+ "README.md"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/cordisx/cordisx.git"
16
+ },
17
+ "homepage": "https://cordisx.github.io/",
18
+ "bugs": {
19
+ "url": "https://github.com/cordisx/cordisx/issues"
20
+ },
21
+ "license": "UNLICENSED",
22
+ "engines": {
23
+ "node": ">=18"
24
+ }
25
+ }