nitrostack 1.0.0 → 1.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.
- package/CHANGELOG.md +15 -0
- package/package.json +1 -1
- package/templates/typescript-auth/.env.example +23 -0
- package/templates/typescript-auth/src/app.module.ts +103 -0
- package/templates/typescript-auth/src/db/database.ts +163 -0
- package/templates/typescript-auth/src/db/seed.ts +374 -0
- package/templates/typescript-auth/src/db/setup.ts +87 -0
- package/templates/typescript-auth/src/events/analytics.service.ts +52 -0
- package/templates/typescript-auth/src/events/notification.service.ts +40 -0
- package/templates/typescript-auth/src/filters/global-exception.filter.ts +28 -0
- package/templates/typescript-auth/src/guards/README.md +75 -0
- package/templates/typescript-auth/src/guards/jwt.guard.ts +105 -0
- package/templates/typescript-auth/src/health/database.health.ts +41 -0
- package/templates/typescript-auth/src/index.ts +26 -0
- package/templates/typescript-auth/src/interceptors/transform.interceptor.ts +24 -0
- package/templates/typescript-auth/src/middleware/logging.middleware.ts +42 -0
- package/templates/typescript-auth/src/modules/addresses/addresses.module.ts +16 -0
- package/templates/typescript-auth/src/modules/addresses/addresses.prompts.ts +114 -0
- package/templates/typescript-auth/src/modules/addresses/addresses.resources.ts +40 -0
- package/templates/typescript-auth/src/modules/addresses/addresses.tools.ts +241 -0
- package/templates/typescript-auth/src/modules/auth/auth.module.ts +16 -0
- package/templates/typescript-auth/src/modules/auth/auth.prompts.ts +147 -0
- package/templates/typescript-auth/src/modules/auth/auth.resources.ts +84 -0
- package/templates/typescript-auth/src/modules/auth/auth.tools.ts +139 -0
- package/templates/typescript-auth/src/modules/cart/cart.module.ts +16 -0
- package/templates/typescript-auth/src/modules/cart/cart.prompts.ts +95 -0
- package/templates/typescript-auth/src/modules/cart/cart.resources.ts +44 -0
- package/templates/typescript-auth/src/modules/cart/cart.tools.ts +281 -0
- package/templates/typescript-auth/src/modules/orders/orders.module.ts +16 -0
- package/templates/typescript-auth/src/modules/orders/orders.prompts.ts +88 -0
- package/templates/typescript-auth/src/modules/orders/orders.resources.ts +48 -0
- package/templates/typescript-auth/src/modules/orders/orders.tools.ts +281 -0
- package/templates/typescript-auth/src/modules/products/products.module.ts +16 -0
- package/templates/typescript-auth/src/modules/products/products.prompts.ts +146 -0
- package/templates/typescript-auth/src/modules/products/products.resources.ts +98 -0
- package/templates/typescript-auth/src/modules/products/products.tools.ts +266 -0
- package/templates/typescript-auth/src/pipes/validation.pipe.ts +42 -0
- package/templates/typescript-auth/src/services/database.service.ts +90 -0
- package/templates/typescript-auth/src/widgets/app/add-to-cart/page.tsx +122 -0
- package/templates/typescript-auth/src/widgets/app/address-added/page.tsx +116 -0
- package/templates/typescript-auth/src/widgets/app/address-deleted/page.tsx +105 -0
- package/templates/typescript-auth/src/widgets/app/address-list/page.tsx +139 -0
- package/templates/typescript-auth/src/widgets/app/address-updated/page.tsx +153 -0
- package/templates/typescript-auth/src/widgets/app/cart-cleared/page.tsx +86 -0
- package/templates/typescript-auth/src/widgets/app/cart-updated/page.tsx +116 -0
- package/templates/typescript-auth/src/widgets/app/categories/page.tsx +134 -0
- package/templates/typescript-auth/src/widgets/app/layout.tsx +21 -0
- package/templates/typescript-auth/src/widgets/app/login-result/page.tsx +129 -0
- package/templates/typescript-auth/src/widgets/app/order-confirmation/page.tsx +206 -0
- package/templates/typescript-auth/src/widgets/app/order-details/page.tsx +225 -0
- package/templates/typescript-auth/src/widgets/app/order-history/page.tsx +218 -0
- package/templates/typescript-auth/src/widgets/app/product-card/page.tsx +121 -0
- package/templates/typescript-auth/src/widgets/app/products-grid/page.tsx +173 -0
- package/templates/typescript-auth/src/widgets/app/shopping-cart/page.tsx +187 -0
- package/templates/typescript-auth/src/widgets/app/whoami/page.tsx +165 -0
- package/templates/typescript-auth/src/widgets/next.config.js +38 -0
- package/templates/typescript-auth/src/widgets/package.json +18 -0
- package/templates/typescript-auth/src/widgets/styles/ecommerce.ts +169 -0
- package/templates/typescript-auth/src/widgets/tsconfig.json +28 -0
- package/templates/typescript-auth/src/widgets/types/tool-data.ts +141 -0
- package/templates/typescript-auth/src/widgets/widget-manifest.json +464 -0
- package/templates/typescript-auth/tsconfig.json +27 -0
- package/templates/typescript-auth-api-key/.env +15 -0
- package/templates/typescript-auth-api-key/.env.example +4 -0
- package/templates/typescript-auth-api-key/src/app.module.ts +38 -0
- package/templates/typescript-auth-api-key/src/guards/apikey.guard.ts +47 -0
- package/templates/typescript-auth-api-key/src/guards/multi-auth.guard.ts +157 -0
- package/templates/typescript-auth-api-key/src/health/system.health.ts +55 -0
- package/templates/typescript-auth-api-key/src/index.ts +47 -0
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.module.ts +12 -0
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.prompts.ts +73 -0
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.resources.ts +60 -0
- package/templates/typescript-auth-api-key/src/modules/calculator/calculator.tools.ts +71 -0
- package/templates/typescript-auth-api-key/src/modules/demo/demo.module.ts +18 -0
- package/templates/typescript-auth-api-key/src/modules/demo/demo.tools.ts +155 -0
- package/templates/typescript-auth-api-key/src/modules/demo/multi-auth.tools.ts +123 -0
- package/templates/typescript-auth-api-key/src/widgets/app/calculator-operations/page.tsx +133 -0
- package/templates/typescript-auth-api-key/src/widgets/app/calculator-result/page.tsx +134 -0
- package/templates/typescript-auth-api-key/src/widgets/app/layout.tsx +14 -0
- package/templates/typescript-auth-api-key/src/widgets/next.config.js +37 -0
- package/templates/typescript-auth-api-key/src/widgets/package.json +24 -0
- package/templates/typescript-auth-api-key/src/widgets/tsconfig.json +28 -0
- package/templates/typescript-auth-api-key/src/widgets/widget-manifest.json +48 -0
- package/templates/typescript-auth-api-key/tsconfig.json +23 -0
- package/templates/typescript-oauth/.env.example +91 -0
- package/templates/typescript-oauth/src/app.module.ts +89 -0
- package/templates/typescript-oauth/src/guards/oauth.guard.ts +127 -0
- package/templates/typescript-oauth/src/index.ts +74 -0
- package/templates/typescript-oauth/src/modules/demo/demo.module.ts +16 -0
- package/templates/typescript-oauth/src/modules/demo/demo.tools.ts +190 -0
- package/templates/typescript-oauth/src/widgets/app/calculator-operations/page.tsx +133 -0
- package/templates/typescript-oauth/src/widgets/app/calculator-result/page.tsx +134 -0
- package/templates/typescript-oauth/src/widgets/app/layout.tsx +14 -0
- package/templates/typescript-oauth/src/widgets/next.config.js +37 -0
- package/templates/typescript-oauth/src/widgets/package.json +24 -0
- package/templates/typescript-oauth/src/widgets/tsconfig.json +28 -0
- package/templates/typescript-oauth/src/widgets/widget-manifest.json +48 -0
- package/templates/typescript-oauth/tsconfig.json +23 -0
- package/templates/typescript-starter/.env.example +4 -0
- package/templates/typescript-starter/src/app.module.ts +34 -0
- package/templates/typescript-starter/src/health/system.health.ts +55 -0
- package/templates/typescript-starter/src/index.ts +27 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.module.ts +12 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.prompts.ts +73 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.resources.ts +60 -0
- package/templates/typescript-starter/src/modules/calculator/calculator.tools.ts +71 -0
- package/templates/typescript-starter/src/widgets/app/calculator-operations/page.tsx +133 -0
- package/templates/typescript-starter/src/widgets/app/calculator-result/page.tsx +134 -0
- package/templates/typescript-starter/src/widgets/app/layout.tsx +14 -0
- package/templates/typescript-starter/src/widgets/next.config.js +37 -0
- package/templates/typescript-starter/src/widgets/package.json +24 -0
- package/templates/typescript-starter/src/widgets/tsconfig.json +28 -0
- package/templates/typescript-starter/src/widgets/widget-manifest.json +48 -0
- package/templates/typescript-starter/tsconfig.json +23 -0
- package/LICENSE_URLS_UPDATE_COMPLETE.md +0 -388
|
@@ -1,388 +0,0 @@
|
|
|
1
|
-
# License Files & URLs Update - Complete ✅
|
|
2
|
-
|
|
3
|
-
## Summary
|
|
4
|
-
|
|
5
|
-
All license files, legal notices, and website URLs have been successfully updated for the **NitroStack** package.
|
|
6
|
-
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
## 🔗 Official URLs (Final)
|
|
10
|
-
|
|
11
|
-
### Primary URLs
|
|
12
|
-
- **Website**: https://nitrostack.vercel.app
|
|
13
|
-
- **Documentation**: https://nitrostack-docs.vercel.app
|
|
14
|
-
- **GitHub**: https://github.com/abhishekpanditofficial/nitrostack
|
|
15
|
-
- **npm**: https://www.npmjs.com/package/nitrostack
|
|
16
|
-
|
|
17
|
-
### URL Changes Applied
|
|
18
|
-
```
|
|
19
|
-
OLD → NEW
|
|
20
|
-
|
|
21
|
-
https://hypermcp.vercel.app → https://nitrostack.vercel.app
|
|
22
|
-
https://hypermcp-docs.vercel.app → https://nitrostack-docs.vercel.app
|
|
23
|
-
https://nitrostack.dev → https://nitrostack.vercel.app (corrected)
|
|
24
|
-
https://docs.nitrostack.dev → https://nitrostack-docs.vercel.app (corrected)
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
---
|
|
28
|
-
|
|
29
|
-
## 📄 License Files Updated
|
|
30
|
-
|
|
31
|
-
### 1. LICENSE ✅
|
|
32
|
-
**File**: `/LICENSE`
|
|
33
|
-
|
|
34
|
-
**Status**: Apache License 2.0 - Copyright updated
|
|
35
|
-
|
|
36
|
-
**Content**:
|
|
37
|
-
```
|
|
38
|
-
Copyright 2025 Abhishek Pandit
|
|
39
|
-
|
|
40
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
41
|
-
...
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
**No changes needed** - Already correctly attributes to Abhishek Pandit
|
|
45
|
-
|
|
46
|
-
---
|
|
47
|
-
|
|
48
|
-
### 2. NOTICE ✅
|
|
49
|
-
**File**: `/NOTICE`
|
|
50
|
-
|
|
51
|
-
**Updated Sections**:
|
|
52
|
-
|
|
53
|
-
#### Header
|
|
54
|
-
```
|
|
55
|
-
BEFORE:
|
|
56
|
-
HyperMCP
|
|
57
|
-
Copyright 2025 Abhishek Pandit
|
|
58
|
-
This product includes software developed by Abhishek Pandit at HyperMCP...
|
|
59
|
-
|
|
60
|
-
AFTER:
|
|
61
|
-
NitroStack
|
|
62
|
-
Copyright 2025 Abhishek Pandit
|
|
63
|
-
This product includes software developed by Abhishek Pandit for NitroStack...
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
#### Trademarks Section
|
|
67
|
-
```
|
|
68
|
-
BEFORE:
|
|
69
|
-
HyperMCP, the HyperMCP logo, and related marks are trademarks of the HyperMCP
|
|
70
|
-
project. Use of these trademarks is subject to the trademark policy available
|
|
71
|
-
at https://hypermcp.vercel.app/.
|
|
72
|
-
|
|
73
|
-
AFTER:
|
|
74
|
-
NitroStack, the NitroStack logo, and related marks are trademarks of the NitroStack
|
|
75
|
-
project. Use of these trademarks is subject to the trademark policy available
|
|
76
|
-
at https://nitrostack.vercel.app/.
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
#### Footer Links
|
|
80
|
-
```
|
|
81
|
-
BEFORE:
|
|
82
|
-
- Website: https://hypermcp.vercel.app/
|
|
83
|
-
- Documentation: https://hypermcp-docs.vercel.app/
|
|
84
|
-
- GitHub: https://github.com/abhishekpanditofficial/supermcp
|
|
85
|
-
|
|
86
|
-
AFTER:
|
|
87
|
-
- Website: https://nitrostack.vercel.app/
|
|
88
|
-
- Documentation: https://nitrostack-docs.vercel.app/
|
|
89
|
-
- GitHub: https://github.com/abhishekpanditofficial/nitrostack
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
**Dependencies Attribution**: ✅ Complete
|
|
93
|
-
- All 20+ dependencies properly listed with licenses
|
|
94
|
-
- No changes needed to dependency attributions
|
|
95
|
-
|
|
96
|
-
---
|
|
97
|
-
|
|
98
|
-
### 3. CONTRIBUTING.md ✅
|
|
99
|
-
**File**: `/CONTRIBUTING.md`
|
|
100
|
-
|
|
101
|
-
**Updated**:
|
|
102
|
-
- License header template uses "Abhishek Pandit"
|
|
103
|
-
- Resources section links updated to new URLs
|
|
104
|
-
- CLA references Apache 2.0
|
|
105
|
-
|
|
106
|
-
**License Header Template**:
|
|
107
|
-
```typescript
|
|
108
|
-
/**
|
|
109
|
-
* Copyright 2025 Abhishek Pandit
|
|
110
|
-
*
|
|
111
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
112
|
-
* you may not use this file except in compliance with the License.
|
|
113
|
-
* You may obtain a copy of the License at
|
|
114
|
-
*
|
|
115
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
116
|
-
*
|
|
117
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
118
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
119
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
120
|
-
* See the License for the specific language governing permissions and
|
|
121
|
-
* limitations under the License.
|
|
122
|
-
*/
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
**Resources Section**:
|
|
126
|
-
```markdown
|
|
127
|
-
## 🔗 Resources
|
|
128
|
-
|
|
129
|
-
- **Website**: https://nitrostack.vercel.app/
|
|
130
|
-
- **Documentation**: https://nitrostack-docs.vercel.app/
|
|
131
|
-
- **GitHub**: https://github.com/abhishekpanditofficial/nitrostack
|
|
132
|
-
- **npm Package**: https://www.npmjs.com/package/nitrostack
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
---
|
|
136
|
-
|
|
137
|
-
### 4. README.md ✅
|
|
138
|
-
**File**: `/README.md`
|
|
139
|
-
|
|
140
|
-
**Badges Updated**:
|
|
141
|
-
```markdown
|
|
142
|
-
[](https://www.npmjs.com/package/nitrostack)
|
|
143
|
-
[](https://opensource.org/licenses/Apache-2.0)
|
|
144
|
-
[](https://nitrostack.vercel.app/)
|
|
145
|
-
[](https://nitrostack-docs.vercel.app/)
|
|
146
|
-
```
|
|
147
|
-
|
|
148
|
-
**Documentation Section**:
|
|
149
|
-
```markdown
|
|
150
|
-
## 📚 Documentation
|
|
151
|
-
|
|
152
|
-
**📖 Full documentation available at: https://nitrostack-docs.vercel.app/**
|
|
153
|
-
|
|
154
|
-
Quick Links:
|
|
155
|
-
- [Getting Started](https://nitrostack-docs.vercel.app/intro)
|
|
156
|
-
- [Installation](https://nitrostack-docs.vercel.app/installation)
|
|
157
|
-
- [Quick Start](https://nitrostack-docs.vercel.app/quick-start)
|
|
158
|
-
- [Tools Guide](https://nitrostack-docs.vercel.app/sdk/typescript/tools)
|
|
159
|
-
- [Widgets Guide](https://nitrostack-docs.vercel.app/sdk/typescript/ui/widgets)
|
|
160
|
-
- [Authentication](https://nitrostack-docs.vercel.app/sdk/typescript/auth/overview)
|
|
161
|
-
- [CLI Reference](https://nitrostack-docs.vercel.app/cli/overview)
|
|
162
|
-
- [API Reference](https://nitrostack-docs.vercel.app/api/decorators)
|
|
163
|
-
- [Templates](https://nitrostack-docs.vercel.app/templates/starter)
|
|
164
|
-
- [Deployment](https://nitrostack-docs.vercel.app/deployment/checklist)
|
|
165
|
-
```
|
|
166
|
-
|
|
167
|
-
**License Section**:
|
|
168
|
-
```markdown
|
|
169
|
-
## 📝 License
|
|
170
|
-
|
|
171
|
-
This project is licensed under the **Apache License 2.0** - see the [LICENSE](./LICENSE) file for details.
|
|
172
|
-
|
|
173
|
-
Copyright 2025 Abhishek Pandit
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
**Links Section**:
|
|
177
|
-
```markdown
|
|
178
|
-
## 🔗 Links
|
|
179
|
-
|
|
180
|
-
- **Website**: https://nitrostack.vercel.app/
|
|
181
|
-
- **Documentation**: https://nitrostack-docs.vercel.app/
|
|
182
|
-
- **GitHub**: https://github.com/abhishekpanditofficial/nitrostack
|
|
183
|
-
- **npm Package**: https://www.npmjs.com/package/nitrostack
|
|
184
|
-
- **Model Context Protocol**: https://modelcontextprotocol.io
|
|
185
|
-
```
|
|
186
|
-
|
|
187
|
-
---
|
|
188
|
-
|
|
189
|
-
### 5. CHANGELOG.md ✅
|
|
190
|
-
**File**: `/CHANGELOG.md`
|
|
191
|
-
|
|
192
|
-
**Updated**:
|
|
193
|
-
```markdown
|
|
194
|
-
## [Unreleased]
|
|
195
|
-
|
|
196
|
-
### Changed
|
|
197
|
-
- **License**: Changed from MIT to Apache License 2.0
|
|
198
|
-
- **Copyright**: Copyright holder is Abhishek Pandit
|
|
199
|
-
- **Author**: Updated author to Abhishek Pandit
|
|
200
|
-
- **Package Name**: Renamed from hypermcp to nitrostack
|
|
201
|
-
- **URLs**: Updated to nitrostack.vercel.app and nitrostack-docs.vercel.app
|
|
202
|
-
- Added NOTICE file for Apache 2.0 compliance with dependency attributions
|
|
203
|
-
- Updated CONTRIBUTING.md with Apache 2.0 license headers and contributor agreement
|
|
204
|
-
```
|
|
205
|
-
|
|
206
|
-
---
|
|
207
|
-
|
|
208
|
-
### 6. package.json ✅
|
|
209
|
-
**File**: `/package.json`
|
|
210
|
-
|
|
211
|
-
**Updated Fields**:
|
|
212
|
-
```json
|
|
213
|
-
{
|
|
214
|
-
"name": "nitrostack",
|
|
215
|
-
"description": "NitroStack - Build powerful MCP servers with TypeScript",
|
|
216
|
-
"author": "Abhishek Pandit <abhishekpanditofficial@gmail.com>",
|
|
217
|
-
"license": "Apache-2.0",
|
|
218
|
-
"repository": {
|
|
219
|
-
"type": "git",
|
|
220
|
-
"url": "https://github.com/abhishekpanditofficial/nitrostack.git"
|
|
221
|
-
},
|
|
222
|
-
"bugs": {
|
|
223
|
-
"url": "https://github.com/abhishekpanditofficial/nitrostack/issues"
|
|
224
|
-
},
|
|
225
|
-
"homepage": "https://nitrostack.vercel.app"
|
|
226
|
-
}
|
|
227
|
-
```
|
|
228
|
-
|
|
229
|
-
---
|
|
230
|
-
|
|
231
|
-
## 🌐 Website Projects Updated
|
|
232
|
-
|
|
233
|
-
### 1. website/ (Marketing Site) ✅
|
|
234
|
-
**File**: `/website/app/page.tsx`
|
|
235
|
-
|
|
236
|
-
**All Links Updated**:
|
|
237
|
-
- Navigation links → `https://nitrostack-docs.vercel.app`
|
|
238
|
-
- CTA buttons → `https://nitrostack-docs.vercel.app`
|
|
239
|
-
- Template links → `https://nitrostack-docs.vercel.app/templates/...`
|
|
240
|
-
- Footer links → `https://nitrostack-docs.vercel.app`
|
|
241
|
-
|
|
242
|
-
**Verification**:
|
|
243
|
-
```tsx
|
|
244
|
-
// Header
|
|
245
|
-
<a href="https://nitrostack-docs.vercel.app">Docs</a>
|
|
246
|
-
|
|
247
|
-
// CTA
|
|
248
|
-
<a href="https://nitrostack-docs.vercel.app">
|
|
249
|
-
View Documentation
|
|
250
|
-
</a>
|
|
251
|
-
|
|
252
|
-
// Templates
|
|
253
|
-
<a href="https://nitrostack-docs.vercel.app/templates/starter">
|
|
254
|
-
Learn More
|
|
255
|
-
</a>
|
|
256
|
-
|
|
257
|
-
// Footer - Resources
|
|
258
|
-
<li><a href="https://nitrostack-docs.vercel.app">Documentation</a></li>
|
|
259
|
-
<li><a href="https://nitrostack-docs.vercel.app/api-reference/decorators">API Reference</a></li>
|
|
260
|
-
<li><a href="https://nitrostack-docs.vercel.app/getting-started/quick-start">Quick Start</a></li>
|
|
261
|
-
```
|
|
262
|
-
|
|
263
|
-
**Count**: 14 references to `nitrostack-docs.vercel.app` ✅
|
|
264
|
-
|
|
265
|
-
---
|
|
266
|
-
|
|
267
|
-
### 2. documentation/ (Docs Site) ✅
|
|
268
|
-
**File**: `/documentation/app/[...slug]/page.tsx` and others
|
|
269
|
-
|
|
270
|
-
**Status**: All imports and references already updated through bulk replace
|
|
271
|
-
|
|
272
|
-
---
|
|
273
|
-
|
|
274
|
-
### 3. src/studio/ (Studio App) ✅
|
|
275
|
-
**File**: `/src/studio/package.json`
|
|
276
|
-
|
|
277
|
-
**Updated**:
|
|
278
|
-
```json
|
|
279
|
-
{
|
|
280
|
-
"name": "@nitrostack/studio",
|
|
281
|
-
"version": "3.1.0",
|
|
282
|
-
"description": "NitroStack Studio - Visual MCP Server Inspector"
|
|
283
|
-
}
|
|
284
|
-
```
|
|
285
|
-
|
|
286
|
-
**Linked**: `npm link nitrostack` ✅
|
|
287
|
-
|
|
288
|
-
---
|
|
289
|
-
|
|
290
|
-
## 📊 All Files Updated Summary
|
|
291
|
-
|
|
292
|
-
| Category | Files | Status |
|
|
293
|
-
|----------|-------|--------|
|
|
294
|
-
| **Legal Files** | LICENSE, NOTICE, CONTRIBUTING.md | ✅ Complete |
|
|
295
|
-
| **Documentation** | README.md, CHANGELOG.md | ✅ Complete |
|
|
296
|
-
| **Package Config** | package.json, src/studio/package.json | ✅ Complete |
|
|
297
|
-
| **Source Files** | All .ts, .tsx files | ✅ Complete (946 occurrences) |
|
|
298
|
-
| **Templates** | All 4 templates | ✅ Complete |
|
|
299
|
-
| **Documentation Site** | All .md, .tsx files | ✅ Complete |
|
|
300
|
-
| **Website** | All .tsx files | ✅ Complete (14 links) |
|
|
301
|
-
| **Docs Files** | All .md files | ✅ Complete |
|
|
302
|
-
|
|
303
|
-
---
|
|
304
|
-
|
|
305
|
-
## ✅ Verification
|
|
306
|
-
|
|
307
|
-
### Zero Old References
|
|
308
|
-
```bash
|
|
309
|
-
$ grep -r "hypermcp\|supermcp" --include="*.ts" --include="*.tsx" \
|
|
310
|
-
--include="*.js" --include="*.json" --include="*.md" . \
|
|
311
|
-
| grep -v "node_modules" | grep -v "dist/" | wc -l
|
|
312
|
-
|
|
313
|
-
0 # ✅ Zero occurrences
|
|
314
|
-
```
|
|
315
|
-
|
|
316
|
-
### Build Success
|
|
317
|
-
```bash
|
|
318
|
-
$ npm run build
|
|
319
|
-
> nitrostack@1.0.0 build
|
|
320
|
-
> tsc
|
|
321
|
-
|
|
322
|
-
✅ No errors
|
|
323
|
-
```
|
|
324
|
-
|
|
325
|
-
### CLI Works
|
|
326
|
-
```bash
|
|
327
|
-
$ nitrostack --version
|
|
328
|
-
1.0.0 ✅
|
|
329
|
-
|
|
330
|
-
$ nitrostack --help
|
|
331
|
-
Usage: nitrostack [options] [command]
|
|
332
|
-
NitroStack - Build MCP servers with ease ✅
|
|
333
|
-
```
|
|
334
|
-
|
|
335
|
-
---
|
|
336
|
-
|
|
337
|
-
## 🎯 Legal Compliance Checklist
|
|
338
|
-
|
|
339
|
-
- [x] **Apache 2.0 License** - Full text in LICENSE file
|
|
340
|
-
- [x] **Copyright Attribution** - Abhishek Pandit (2025)
|
|
341
|
-
- [x] **NOTICE File** - All dependencies attributed
|
|
342
|
-
- [x] **License Headers** - Template provided in CONTRIBUTING.md
|
|
343
|
-
- [x] **Contributor Agreement** - CLA documented
|
|
344
|
-
- [x] **Trademark Notice** - NitroStack trademarks protected
|
|
345
|
-
- [x] **Third-Party Licenses** - All 20+ dependencies listed
|
|
346
|
-
- [x] **Standards References** - OAuth, MCP, RFCs documented
|
|
347
|
-
|
|
348
|
-
---
|
|
349
|
-
|
|
350
|
-
## 🚀 Ready for Publication
|
|
351
|
-
|
|
352
|
-
### Pre-Publish Checklist
|
|
353
|
-
- [x] Package name: `nitrostack`
|
|
354
|
-
- [x] Version: `1.0.0`
|
|
355
|
-
- [x] Author: Abhishek Pandit
|
|
356
|
-
- [x] License: Apache-2.0
|
|
357
|
-
- [x] URLs: All updated to .vercel.app
|
|
358
|
-
- [x] Legal files: Complete
|
|
359
|
-
- [x] Build: Successful
|
|
360
|
-
- [x] CLI: Working
|
|
361
|
-
- [x] Links: All verified
|
|
362
|
-
|
|
363
|
-
### Publish Command
|
|
364
|
-
```bash
|
|
365
|
-
npm publish
|
|
366
|
-
```
|
|
367
|
-
|
|
368
|
-
---
|
|
369
|
-
|
|
370
|
-
## 📞 Official Information
|
|
371
|
-
|
|
372
|
-
**Package**: `nitrostack`
|
|
373
|
-
**Author**: Abhishek Pandit <abhishekpanditofficial@gmail.com>
|
|
374
|
-
**Copyright**: 2025 Abhishek Pandit
|
|
375
|
-
**License**: Apache License 2.0
|
|
376
|
-
|
|
377
|
-
**URLs**:
|
|
378
|
-
- Website: https://nitrostack.vercel.app
|
|
379
|
-
- Documentation: https://nitrostack-docs.vercel.app
|
|
380
|
-
- GitHub: https://github.com/abhishekpanditofficial/nitrostack
|
|
381
|
-
- npm: https://www.npmjs.com/package/nitrostack
|
|
382
|
-
|
|
383
|
-
---
|
|
384
|
-
|
|
385
|
-
**Status**: ✅ **COMPLETE** - All license files and URLs updated!
|
|
386
|
-
|
|
387
|
-
The package is fully compliant, all URLs are correct, and ready for npm publication.
|
|
388
|
-
|