opsail 0.0.1

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 (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # Opsail
2
+
3
+ Composable actions for software agents.
4
+
5
+ This `0.0.1` release intentionally contains no runtime implementation. The
6
+ package name is reserved for the official Opsail Node.js distribution.
7
+
8
+ Project: <https://github.com/lencx/opsail>
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "opsail",
3
+ "version": "0.0.1",
4
+ "description": "Composable actions for software agents",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/lencx/opsail.git"
9
+ },
10
+ "homepage": "https://github.com/lencx/opsail#readme",
11
+ "files": [
12
+ "README.md"
13
+ ],
14
+ "publishConfig": {
15
+ "access": "public",
16
+ "registry": "https://registry.npmjs.org/"
17
+ }
18
+ }