@farthershore/cli 0.7.1 → 0.7.3
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.
- package/README.md +342 -251
- package/dist/index.js +205 -154
- package/dist/mcp.js +141 -123
- package/package.json +14 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@farthershore/cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"description": "FartherShore CLI — create and configure API products",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -18,20 +18,6 @@
|
|
|
18
18
|
"publishConfig": {
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "git+https://github.com/farther-shore/farthershore.git"
|
|
24
|
-
},
|
|
25
|
-
"scripts": {
|
|
26
|
-
"dev": "tsx src/index.ts",
|
|
27
|
-
"build": "tsc --noEmit && node scripts/build.mjs",
|
|
28
|
-
"pack:check": "node scripts/check-pack.mjs",
|
|
29
|
-
"prepublishOnly": "npm test -- --run && npm run build && npm run pack:check",
|
|
30
|
-
"test": "vitest run",
|
|
31
|
-
"lint": "prettier --check \"src/**/*.ts\" && eslint .",
|
|
32
|
-
"lint:fix": "eslint . --fix",
|
|
33
|
-
"typecheck": "tsc --noEmit"
|
|
34
|
-
},
|
|
35
21
|
"keywords": [
|
|
36
22
|
"farthershore",
|
|
37
23
|
"api",
|
|
@@ -43,7 +29,6 @@
|
|
|
43
29
|
"author": "Farther Shore",
|
|
44
30
|
"license": "MIT",
|
|
45
31
|
"devDependencies": {
|
|
46
|
-
"@farther-shore/shared-types": "^0.45.0",
|
|
47
32
|
"@modelcontextprotocol/sdk": "^1.18.0",
|
|
48
33
|
"@types/node": "^22.19.17",
|
|
49
34
|
"chalk": "^5.4.1",
|
|
@@ -55,8 +40,18 @@
|
|
|
55
40
|
"tsx": "^4.21.0",
|
|
56
41
|
"typescript": "^6.0.2",
|
|
57
42
|
"typescript-eslint": "^8.59.0",
|
|
58
|
-
"vitest": "^
|
|
43
|
+
"vitest": "^4.1.6",
|
|
59
44
|
"yaml": "^2.8.3",
|
|
60
|
-
"zod": "^4.3.6"
|
|
45
|
+
"zod": "^4.3.6",
|
|
46
|
+
"@farthershore/contracts": "0.61.1"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"dev": "tsx src/index.ts",
|
|
50
|
+
"build": "tsc --noEmit && node scripts/build.mjs",
|
|
51
|
+
"pack:check": "node scripts/check-pack.mjs",
|
|
52
|
+
"test": "vitest run",
|
|
53
|
+
"lint": "prettier --check \"src/**/*.ts\" && eslint .",
|
|
54
|
+
"lint:fix": "eslint . --fix",
|
|
55
|
+
"typecheck": "tsc --noEmit"
|
|
61
56
|
}
|
|
62
|
-
}
|
|
57
|
+
}
|