@sundial-ai/cli 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.js +3 -0
  2. package/package.json +12 -0
  3. package/publish.sh +2 -0
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ exports.printMsg = function () {
2
+ console.log("This is a message from the package");
3
+ };
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@sundial-ai/cli",
3
+ "version": "1.0.0",
4
+ "description": "Customize your agent's skills",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "Belinda Mo <belinda@sundialscientific.com>",
11
+ "license": "MIT"
12
+ }
package/publish.sh ADDED
@@ -0,0 +1,2 @@
1
+ npm config set -- //registry.npmjs.org/:_authToken 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
2
+ npm publish --access public