@stainlu/faam-cli 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.
@@ -0,0 +1 @@
1
+ #!/usr/bin/env node
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@stainlu/faam-cli",
3
+ "version": "0.2.0",
4
+ "description": "CLI tool to sync local skills to your FAAM Agent Card",
5
+ "type": "module",
6
+ "bin": {
7
+ "faam": "./dist/index.cjs",
8
+ "faam-cli": "./dist/index.cjs"
9
+ },
10
+ "scripts": {
11
+ "dev": "tsx src/index.ts",
12
+ "build": "tsup",
13
+ "typecheck": "tsc --noEmit"
14
+ },
15
+ "dependencies": {
16
+ "chalk": "^5.3.0",
17
+ "commander": "^12.1.0",
18
+ "glob": "^11.0.0",
19
+ "gray-matter": "^4.0.3",
20
+ "ora": "^8.1.1",
21
+ "prompts": "^2.4.2"
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^22.10.0",
25
+ "tsup": "^8.3.5",
26
+ "tsx": "^4.19.2",
27
+ "typescript": "^5.7.2"
28
+ },
29
+ "engines": {
30
+ "node": ">=18"
31
+ },
32
+ "files": [
33
+ "dist"
34
+ ],
35
+ "keywords": [
36
+ "faam",
37
+ "agent",
38
+ "skills",
39
+ "cli",
40
+ "a2a"
41
+ ],
42
+ "license": "MIT",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "https://github.com/stainlu/faam.git",
46
+ "directory": "apps/cli"
47
+ }
48
+ }