@jaypie/mcp 0.2.0 → 0.2.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.
package/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Finlayson Studio, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/index.js CHANGED
@@ -797,7 +797,7 @@ async function searchDatadogRum(credentials, options = {}, logger = nullLogger)
797
797
  });
798
798
  }
799
799
 
800
- const BUILD_VERSION_STRING = "@jaypie/mcp@0.2.0"
800
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.2.1#22724b60"
801
801
  ;
802
802
  const __filename$1 = fileURLToPath(import.meta.url);
803
803
  const __dirname$1 = path.dirname(__filename$1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -49,5 +49,6 @@
49
49
  },
50
50
  "publishConfig": {
51
51
  "access": "public"
52
- }
52
+ },
53
+ "gitHead": "22724b6031f0e737ba7fa4acf7df7c2391e2e2f4"
53
54
  }
@@ -0,0 +1,103 @@
1
+ ---
2
+ description: development utilities bundle for Jaypie repositories
3
+ ---
4
+
5
+ # Jaypie Repokit
6
+
7
+ Essential development utilities bundled for Jaypie repositories. Provides common tools needed for build scripts, development workflows, and repository maintenance.
8
+
9
+ ## Installation
10
+
11
+ ```sh
12
+ npm install --save-dev @jaypie/repokit
13
+ ```
14
+
15
+ ## Exported Utilities
16
+
17
+ ### dotenv
18
+
19
+ Re-exports everything from `dotenv` for environment variable management.
20
+
21
+ ```typescript
22
+ import { config } from "@jaypie/repokit";
23
+
24
+ config(); // Load .env file
25
+ ```
26
+
27
+ ### rimraf
28
+
29
+ Re-exports `rimraf` for cross-platform file deletion.
30
+
31
+ ```typescript
32
+ import { rimraf } from "@jaypie/repokit";
33
+
34
+ await rimraf("./dist");
35
+ ```
36
+
37
+ ## CLI Tools (via npx)
38
+
39
+ The package includes CLI tools as dependencies that can be run via npx or in package.json scripts:
40
+
41
+ ### env-cmd
42
+
43
+ Run commands with environment variables from a file.
44
+
45
+ ```json
46
+ {
47
+ "scripts": {
48
+ "start:dev": "env-cmd -f .env.development node server.js"
49
+ }
50
+ }
51
+ ```
52
+
53
+ ### sort-package-json
54
+
55
+ Sort package.json files for consistent formatting.
56
+
57
+ ```json
58
+ {
59
+ "scripts": {
60
+ "format:package": "sort-package-json ./package.json"
61
+ }
62
+ }
63
+ ```
64
+
65
+ ### tsx
66
+
67
+ Run TypeScript files directly without compilation.
68
+
69
+ ```json
70
+ {
71
+ "scripts": {
72
+ "bin:script": "tsx scripts/my-script.ts"
73
+ }
74
+ }
75
+ ```
76
+
77
+ ## Common Usage Patterns
78
+
79
+ ### Build Scripts
80
+
81
+ ```json
82
+ {
83
+ "scripts": {
84
+ "clean": "rimraf ./dist",
85
+ "format:package": "sort-package-json ./package.json",
86
+ "bin:setup": "tsx scripts/setup.ts"
87
+ }
88
+ }
89
+ ```
90
+
91
+ ### Environment Management
92
+
93
+ ```typescript
94
+ // scripts/deploy.ts
95
+ import { config } from "@jaypie/repokit";
96
+
97
+ config({ path: ".env.production" });
98
+ console.log(process.env.API_KEY);
99
+ ```
100
+
101
+ ## Why Use Repokit
102
+
103
+ Instead of installing `dotenv`, `rimraf`, `env-cmd`, `sort-package-json`, and `tsx` individually in each package, install `@jaypie/repokit` once to get all essential development utilities. This ensures consistent versions across all Jaypie repositories.