aiplc 0.2.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 +9 -0
  2. package/bin/aiplc.js +11 -0
  3. package/package.json +32 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # aiplc
2
+
3
+ This package name is reserved for the official AIPLC CLI project.
4
+
5
+ Project repository:
6
+
7
+ - https://github.com/rachidlaad/aiplc
8
+
9
+ This initial release is a placeholder so the unscoped npm package name is not claimed by another publisher while the full npm distribution is finalized.
package/bin/aiplc.js ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.error(
4
+ [
5
+ "The unscoped `aiplc` npm package is currently a placeholder.",
6
+ "Project repository: https://github.com/rachidlaad/aiplc",
7
+ "The full npm distribution will be published from that project."
8
+ ].join("\n")
9
+ );
10
+
11
+ process.exitCode = 1;
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "aiplc",
3
+ "version": "0.2.0",
4
+ "description": "Official placeholder package for the AIPLC CLI.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "bin": {
8
+ "aiplc": "bin/aiplc.js"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "README.md"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/rachidlaad/aiplc.git"
17
+ },
18
+ "homepage": "https://github.com/rachidlaad/aiplc",
19
+ "bugs": {
20
+ "url": "https://github.com/rachidlaad/aiplc/issues"
21
+ },
22
+ "keywords": [
23
+ "plc",
24
+ "siemens",
25
+ "tia-portal",
26
+ "automation",
27
+ "cli"
28
+ ],
29
+ "engines": {
30
+ "node": ">=18"
31
+ }
32
+ }