nitrostack 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.
- package/CHANGELOG.md +227 -0
- package/CONTRIBUTING.md +182 -0
- package/LICENSE +201 -0
- package/LICENSE_URLS_UPDATE_COMPLETE.md +388 -0
- package/NOTICE +153 -0
- package/README.md +571 -0
- package/dist/auth/api-key.d.ts +118 -0
- package/dist/auth/api-key.d.ts.map +1 -0
- package/dist/auth/api-key.js +168 -0
- package/dist/auth/api-key.js.map +1 -0
- package/dist/auth/client.d.ts +151 -0
- package/dist/auth/client.d.ts.map +1 -0
- package/dist/auth/client.js +330 -0
- package/dist/auth/client.js.map +1 -0
- package/dist/auth/index.d.ts +30 -0
- package/dist/auth/index.d.ts.map +1 -0
- package/dist/auth/index.js +43 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/middleware.d.ts +95 -0
- package/dist/auth/middleware.d.ts.map +1 -0
- package/dist/auth/middleware.js +260 -0
- package/dist/auth/middleware.js.map +1 -0
- package/dist/auth/pkce.d.ts +53 -0
- package/dist/auth/pkce.d.ts.map +1 -0
- package/dist/auth/pkce.js +105 -0
- package/dist/auth/pkce.js.map +1 -0
- package/dist/auth/quick-setup.d.ts +94 -0
- package/dist/auth/quick-setup.d.ts.map +1 -0
- package/dist/auth/quick-setup.js +210 -0
- package/dist/auth/quick-setup.js.map +1 -0
- package/dist/auth/server-integration.d.ts +97 -0
- package/dist/auth/server-integration.d.ts.map +1 -0
- package/dist/auth/server-integration.js +182 -0
- package/dist/auth/server-integration.js.map +1 -0
- package/dist/auth/server-metadata.d.ts +51 -0
- package/dist/auth/server-metadata.d.ts.map +1 -0
- package/dist/auth/server-metadata.js +106 -0
- package/dist/auth/server-metadata.js.map +1 -0
- package/dist/auth/simple-jwt.d.ts +88 -0
- package/dist/auth/simple-jwt.d.ts.map +1 -0
- package/dist/auth/simple-jwt.js +152 -0
- package/dist/auth/simple-jwt.js.map +1 -0
- package/dist/auth/token-store.d.ts +104 -0
- package/dist/auth/token-store.d.ts.map +1 -0
- package/dist/auth/token-store.js +205 -0
- package/dist/auth/token-store.js.map +1 -0
- package/dist/auth/token-validation.d.ts +47 -0
- package/dist/auth/token-validation.d.ts.map +1 -0
- package/dist/auth/token-validation.js +237 -0
- package/dist/auth/token-validation.js.map +1 -0
- package/dist/auth/types.d.ts +215 -0
- package/dist/auth/types.d.ts.map +1 -0
- package/dist/auth/types.js +6 -0
- package/dist/auth/types.js.map +1 -0
- package/dist/cli/commands/build.d.ts +6 -0
- package/dist/cli/commands/build.d.ts.map +1 -0
- package/dist/cli/commands/build.js +104 -0
- package/dist/cli/commands/build.js.map +1 -0
- package/dist/cli/commands/dev.d.ts +7 -0
- package/dist/cli/commands/dev.d.ts.map +1 -0
- package/dist/cli/commands/dev.js +312 -0
- package/dist/cli/commands/dev.js.map +1 -0
- package/dist/cli/commands/generate-types.d.ts +8 -0
- package/dist/cli/commands/generate-types.d.ts.map +1 -0
- package/dist/cli/commands/generate-types.js +220 -0
- package/dist/cli/commands/generate-types.js.map +1 -0
- package/dist/cli/commands/generate.d.ts +5 -0
- package/dist/cli/commands/generate.d.ts.map +1 -0
- package/dist/cli/commands/generate.js +365 -0
- package/dist/cli/commands/generate.js.map +1 -0
- package/dist/cli/commands/init.d.ts +7 -0
- package/dist/cli/commands/init.d.ts.map +1 -0
- package/dist/cli/commands/init.js +365 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/start.d.ts +6 -0
- package/dist/cli/commands/start.d.ts.map +1 -0
- package/dist/cli/commands/start.js +61 -0
- package/dist/cli/commands/start.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +47 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/mcp-dev-wrapper.d.ts +3 -0
- package/dist/cli/mcp-dev-wrapper.d.ts.map +1 -0
- package/dist/cli/mcp-dev-wrapper.js +116 -0
- package/dist/cli/mcp-dev-wrapper.js.map +1 -0
- package/dist/core/apikey-module.d.ts +69 -0
- package/dist/core/apikey-module.d.ts.map +1 -0
- package/dist/core/apikey-module.js +114 -0
- package/dist/core/apikey-module.js.map +1 -0
- package/dist/core/app-decorator.d.ts +58 -0
- package/dist/core/app-decorator.d.ts.map +1 -0
- package/dist/core/app-decorator.js +261 -0
- package/dist/core/app-decorator.js.map +1 -0
- package/dist/core/builders.d.ts +38 -0
- package/dist/core/builders.d.ts.map +1 -0
- package/dist/core/builders.js +129 -0
- package/dist/core/builders.js.map +1 -0
- package/dist/core/component.d.ts +105 -0
- package/dist/core/component.d.ts.map +1 -0
- package/dist/core/component.js +182 -0
- package/dist/core/component.js.map +1 -0
- package/dist/core/config-module.d.ts +55 -0
- package/dist/core/config-module.d.ts.map +1 -0
- package/dist/core/config-module.js +94 -0
- package/dist/core/config-module.js.map +1 -0
- package/dist/core/decorators/cache.decorator.d.ts +61 -0
- package/dist/core/decorators/cache.decorator.d.ts.map +1 -0
- package/dist/core/decorators/cache.decorator.js +115 -0
- package/dist/core/decorators/cache.decorator.js.map +1 -0
- package/dist/core/decorators/health-check.decorator.d.ts +80 -0
- package/dist/core/decorators/health-check.decorator.d.ts.map +1 -0
- package/dist/core/decorators/health-check.decorator.js +153 -0
- package/dist/core/decorators/health-check.decorator.js.map +1 -0
- package/dist/core/decorators/rate-limit.decorator.d.ts +62 -0
- package/dist/core/decorators/rate-limit.decorator.d.ts.map +1 -0
- package/dist/core/decorators/rate-limit.decorator.js +129 -0
- package/dist/core/decorators/rate-limit.decorator.js.map +1 -0
- package/dist/core/decorators.d.ts +151 -0
- package/dist/core/decorators.d.ts.map +1 -0
- package/dist/core/decorators.js +142 -0
- package/dist/core/decorators.js.map +1 -0
- package/dist/core/di/container.d.ts +42 -0
- package/dist/core/di/container.d.ts.map +1 -0
- package/dist/core/di/container.js +76 -0
- package/dist/core/di/container.js.map +1 -0
- package/dist/core/di/injectable.decorator.d.ts +35 -0
- package/dist/core/di/injectable.decorator.d.ts.map +1 -0
- package/dist/core/di/injectable.decorator.js +57 -0
- package/dist/core/di/injectable.decorator.js.map +1 -0
- package/dist/core/errors.d.ts +54 -0
- package/dist/core/errors.d.ts.map +1 -0
- package/dist/core/errors.js +87 -0
- package/dist/core/errors.js.map +1 -0
- package/dist/core/events/event-emitter.d.ts +50 -0
- package/dist/core/events/event-emitter.d.ts.map +1 -0
- package/dist/core/events/event-emitter.js +94 -0
- package/dist/core/events/event-emitter.js.map +1 -0
- package/dist/core/events/event.decorator.d.ts +48 -0
- package/dist/core/events/event.decorator.d.ts.map +1 -0
- package/dist/core/events/event.decorator.js +68 -0
- package/dist/core/events/event.decorator.js.map +1 -0
- package/dist/core/filters/exception-filter.decorator.d.ts +40 -0
- package/dist/core/filters/exception-filter.decorator.d.ts.map +1 -0
- package/dist/core/filters/exception-filter.decorator.js +54 -0
- package/dist/core/filters/exception-filter.decorator.js.map +1 -0
- package/dist/core/filters/exception-filter.interface.d.ts +30 -0
- package/dist/core/filters/exception-filter.interface.d.ts.map +1 -0
- package/dist/core/filters/exception-filter.interface.js +2 -0
- package/dist/core/filters/exception-filter.interface.js.map +1 -0
- package/dist/core/guards/apikey.guard.d.ts +22 -0
- package/dist/core/guards/apikey.guard.d.ts.map +1 -0
- package/dist/core/guards/apikey.guard.js +11 -0
- package/dist/core/guards/apikey.guard.js.map +1 -0
- package/dist/core/guards/guard.interface.d.ts +18 -0
- package/dist/core/guards/guard.interface.d.ts.map +1 -0
- package/dist/core/guards/guard.interface.js +2 -0
- package/dist/core/guards/guard.interface.js.map +1 -0
- package/dist/core/guards/jwt.guard.d.ts +18 -0
- package/dist/core/guards/jwt.guard.d.ts.map +1 -0
- package/dist/core/guards/jwt.guard.js +2 -0
- package/dist/core/guards/jwt.guard.js.map +1 -0
- package/dist/core/guards/oauth.guard.d.ts +35 -0
- package/dist/core/guards/oauth.guard.d.ts.map +1 -0
- package/dist/core/guards/oauth.guard.js +2 -0
- package/dist/core/guards/oauth.guard.js.map +1 -0
- package/dist/core/guards/use-guards.decorator.d.ts +25 -0
- package/dist/core/guards/use-guards.decorator.d.ts.map +1 -0
- package/dist/core/guards/use-guards.decorator.js +32 -0
- package/dist/core/guards/use-guards.decorator.js.map +1 -0
- package/dist/core/health/health-checks.resource.d.ts +14 -0
- package/dist/core/health/health-checks.resource.d.ts.map +1 -0
- package/dist/core/health/health-checks.resource.js +29 -0
- package/dist/core/health/health-checks.resource.js.map +1 -0
- package/dist/core/index.d.ts +55 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +57 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/interceptors/interceptor.decorator.d.ts +37 -0
- package/dist/core/interceptors/interceptor.decorator.d.ts.map +1 -0
- package/dist/core/interceptors/interceptor.decorator.js +51 -0
- package/dist/core/interceptors/interceptor.decorator.js.map +1 -0
- package/dist/core/interceptors/interceptor.interface.d.ts +31 -0
- package/dist/core/interceptors/interceptor.interface.d.ts.map +1 -0
- package/dist/core/interceptors/interceptor.interface.js +2 -0
- package/dist/core/interceptors/interceptor.interface.js.map +1 -0
- package/dist/core/jwt-module.d.ts +51 -0
- package/dist/core/jwt-module.d.ts.map +1 -0
- package/dist/core/jwt-module.js +52 -0
- package/dist/core/jwt-module.js.map +1 -0
- package/dist/core/logger.d.ts +18 -0
- package/dist/core/logger.d.ts.map +1 -0
- package/dist/core/logger.js +51 -0
- package/dist/core/logger.js.map +1 -0
- package/dist/core/middleware/middleware.decorator.d.ts +39 -0
- package/dist/core/middleware/middleware.decorator.d.ts.map +1 -0
- package/dist/core/middleware/middleware.decorator.js +53 -0
- package/dist/core/middleware/middleware.decorator.js.map +1 -0
- package/dist/core/middleware/middleware.interface.d.ts +29 -0
- package/dist/core/middleware/middleware.interface.d.ts.map +1 -0
- package/dist/core/middleware/middleware.interface.js +2 -0
- package/dist/core/middleware/middleware.interface.js.map +1 -0
- package/dist/core/module.d.ts +74 -0
- package/dist/core/module.d.ts.map +1 -0
- package/dist/core/module.js +82 -0
- package/dist/core/module.js.map +1 -0
- package/dist/core/oauth-module.d.ts +144 -0
- package/dist/core/oauth-module.d.ts.map +1 -0
- package/dist/core/oauth-module.js +190 -0
- package/dist/core/oauth-module.js.map +1 -0
- package/dist/core/pipes/pipe.decorator.d.ts +55 -0
- package/dist/core/pipes/pipe.decorator.d.ts.map +1 -0
- package/dist/core/pipes/pipe.decorator.js +85 -0
- package/dist/core/pipes/pipe.decorator.js.map +1 -0
- package/dist/core/pipes/pipe.interface.d.ts +36 -0
- package/dist/core/pipes/pipe.interface.d.ts.map +1 -0
- package/dist/core/pipes/pipe.interface.js +2 -0
- package/dist/core/pipes/pipe.interface.js.map +1 -0
- package/dist/core/prompt.d.ts +37 -0
- package/dist/core/prompt.d.ts.map +1 -0
- package/dist/core/prompt.js +76 -0
- package/dist/core/prompt.js.map +1 -0
- package/dist/core/resource.d.ts +42 -0
- package/dist/core/resource.d.ts.map +1 -0
- package/dist/core/resource.js +90 -0
- package/dist/core/resource.js.map +1 -0
- package/dist/core/server.d.ts +72 -0
- package/dist/core/server.d.ts.map +1 -0
- package/dist/core/server.js +406 -0
- package/dist/core/server.js.map +1 -0
- package/dist/core/tool.d.ts +78 -0
- package/dist/core/tool.d.ts.map +1 -0
- package/dist/core/tool.js +190 -0
- package/dist/core/tool.js.map +1 -0
- package/dist/core/transports/http-server.d.ts +102 -0
- package/dist/core/transports/http-server.d.ts.map +1 -0
- package/dist/core/transports/http-server.js +265 -0
- package/dist/core/transports/http-server.js.map +1 -0
- package/dist/core/types.d.ts +123 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +2 -0
- package/dist/core/types.js.map +1 -0
- package/dist/core/widgets/widget-examples.resource.d.ts +17 -0
- package/dist/core/widgets/widget-examples.resource.d.ts.map +1 -0
- package/dist/core/widgets/widget-examples.resource.js +28 -0
- package/dist/core/widgets/widget-examples.resource.js.map +1 -0
- package/dist/core/widgets/widget-registry.d.ts +56 -0
- package/dist/core/widgets/widget-registry.d.ts.map +1 -0
- package/dist/core/widgets/widget-registry.js +75 -0
- package/dist/core/widgets/widget-registry.js.map +1 -0
- package/dist/testing/index.d.ts +82 -0
- package/dist/testing/index.d.ts.map +1 -0
- package/dist/testing/index.js +164 -0
- package/dist/testing/index.js.map +1 -0
- package/dist/ui-next/index.d.ts +31 -0
- package/dist/ui-next/index.d.ts.map +1 -0
- package/dist/ui-next/index.js +687 -0
- package/dist/ui-next/index.js.map +1 -0
- package/dist/widgets/index.d.ts +9 -0
- package/dist/widgets/index.d.ts.map +1 -0
- package/dist/widgets/index.js +9 -0
- package/dist/widgets/index.js.map +1 -0
- package/dist/widgets/metadata.d.ts +53 -0
- package/dist/widgets/metadata.d.ts.map +1 -0
- package/dist/widgets/metadata.js +29 -0
- package/dist/widgets/metadata.js.map +1 -0
- package/dist/widgets/withToolData.d.ts +19 -0
- package/dist/widgets/withToolData.d.ts.map +1 -0
- package/dist/widgets/withToolData.js +240 -0
- package/dist/widgets/withToolData.js.map +1 -0
- package/jest.config.js +21 -0
- package/package.json +108 -0
- package/templates/typescript-auth/AI_AGENT_CLI_REFERENCE.md +702 -0
- package/templates/typescript-auth/AI_AGENT_SDK_REFERENCE.md +1260 -0
- package/templates/typescript-auth/README.md +400 -0
- package/templates/typescript-auth/package.json +44 -0
- package/templates/typescript-auth-api-key/AI_AGENT_CLI_REFERENCE.md +701 -0
- package/templates/typescript-auth-api-key/AI_AGENT_SDK_REFERENCE.md +1260 -0
- package/templates/typescript-auth-api-key/README.md +483 -0
- package/templates/typescript-auth-api-key/package-lock.json +124 -0
- package/templates/typescript-auth-api-key/package.json +29 -0
- package/templates/typescript-oauth/AI_AGENT_CLI_REFERENCE.md +701 -0
- package/templates/typescript-oauth/AI_AGENT_SDK_REFERENCE.md +1260 -0
- package/templates/typescript-oauth/OAUTH_SETUP.md +406 -0
- package/templates/typescript-oauth/README.md +350 -0
- package/templates/typescript-oauth/package.json +30 -0
- package/templates/typescript-starter/AI_AGENT_CLI_REFERENCE.md +701 -0
- package/templates/typescript-starter/AI_AGENT_SDK_REFERENCE.md +1260 -0
- package/templates/typescript-starter/README.md +312 -0
- package/templates/typescript-starter/package.json +32 -0
|
@@ -0,0 +1,388 @@
|
|
|
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
|
+
|
package/NOTICE
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
NitroStack
|
|
2
|
+
Copyright 2025 Abhishek Pandit
|
|
3
|
+
|
|
4
|
+
This product includes software developed by Abhishek Pandit for NitroStack (https://nitrostack.vercel.app/).
|
|
5
|
+
|
|
6
|
+
This project contains code and dependencies from various open source projects:
|
|
7
|
+
|
|
8
|
+
================================================================================
|
|
9
|
+
|
|
10
|
+
@modelcontextprotocol/sdk
|
|
11
|
+
Copyright (c) Anthropic PBC
|
|
12
|
+
Licensed under the MIT License
|
|
13
|
+
|
|
14
|
+
@google/generative-ai
|
|
15
|
+
Copyright (c) Google LLC
|
|
16
|
+
Licensed under the Apache License, Version 2.0
|
|
17
|
+
|
|
18
|
+
express
|
|
19
|
+
Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
|
|
20
|
+
Copyright (c) 2013-2014 Roman Shtylman <shtylman+expressjs@gmail.com>
|
|
21
|
+
Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
|
22
|
+
Licensed under the MIT License
|
|
23
|
+
|
|
24
|
+
zod
|
|
25
|
+
Copyright (c) 2020 Colin McDonnell
|
|
26
|
+
Licensed under the MIT License
|
|
27
|
+
|
|
28
|
+
reflect-metadata
|
|
29
|
+
Copyright (c) Microsoft Corporation
|
|
30
|
+
Licensed under the Apache License, Version 2.0
|
|
31
|
+
|
|
32
|
+
winston
|
|
33
|
+
Copyright (c) 2010 Charlie Robbins
|
|
34
|
+
Licensed under the MIT License
|
|
35
|
+
|
|
36
|
+
jsonwebtoken
|
|
37
|
+
Copyright (c) 2015 Auth0, Inc. <support@auth0.com> (http://auth0.com)
|
|
38
|
+
Licensed under the MIT License
|
|
39
|
+
|
|
40
|
+
jose
|
|
41
|
+
Copyright (c) 2020 Filip Skokan
|
|
42
|
+
Licensed under the MIT License
|
|
43
|
+
|
|
44
|
+
better-sqlite3
|
|
45
|
+
Copyright (c) 2016 Joshua Wise
|
|
46
|
+
Licensed under the MIT License
|
|
47
|
+
|
|
48
|
+
bcryptjs
|
|
49
|
+
Copyright (c) 2012 Nevins Bartolomeo
|
|
50
|
+
Licensed under the MIT License
|
|
51
|
+
|
|
52
|
+
inquirer
|
|
53
|
+
Copyright (c) 2012 Simon Boudrias
|
|
54
|
+
Licensed under the MIT License
|
|
55
|
+
|
|
56
|
+
commander
|
|
57
|
+
Copyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>
|
|
58
|
+
Licensed under the MIT License
|
|
59
|
+
|
|
60
|
+
chokidar
|
|
61
|
+
Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com)
|
|
62
|
+
Copyright (c) 2014-2019 Elan Shanker
|
|
63
|
+
Licensed under the MIT License
|
|
64
|
+
|
|
65
|
+
openai
|
|
66
|
+
Copyright (c) OpenAI
|
|
67
|
+
Licensed under the Apache License, Version 2.0
|
|
68
|
+
|
|
69
|
+
fs-extra
|
|
70
|
+
Copyright (c) 2011-2017 JP Richardson
|
|
71
|
+
Licensed under the MIT License
|
|
72
|
+
|
|
73
|
+
dotenv
|
|
74
|
+
Copyright (c) 2015, Scott Motte
|
|
75
|
+
Licensed under the BSD 2-Clause License
|
|
76
|
+
|
|
77
|
+
ora
|
|
78
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
79
|
+
Licensed under the MIT License
|
|
80
|
+
|
|
81
|
+
open
|
|
82
|
+
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
83
|
+
Licensed under the MIT License
|
|
84
|
+
|
|
85
|
+
uuid
|
|
86
|
+
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
|
87
|
+
Licensed under the MIT License
|
|
88
|
+
|
|
89
|
+
ws
|
|
90
|
+
Copyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
|
91
|
+
Licensed under the MIT License
|
|
92
|
+
|
|
93
|
+
cors
|
|
94
|
+
Copyright (c) 2013 Troy Goode <troygoode@gmail.com>
|
|
95
|
+
Licensed under the MIT License
|
|
96
|
+
|
|
97
|
+
http-proxy-middleware
|
|
98
|
+
Copyright (c) 2015 Steven Chim
|
|
99
|
+
Licensed under the MIT License
|
|
100
|
+
|
|
101
|
+
zod-to-json-schema
|
|
102
|
+
Copyright (c) 2021 Stefan Terdell
|
|
103
|
+
Licensed under the ISC License
|
|
104
|
+
|
|
105
|
+
================================================================================
|
|
106
|
+
|
|
107
|
+
For the full license texts of these dependencies, please refer to their
|
|
108
|
+
respective package directories in node_modules or their source repositories.
|
|
109
|
+
|
|
110
|
+
================================================================================
|
|
111
|
+
|
|
112
|
+
The HyperMCP project also includes documentation and examples that reference
|
|
113
|
+
various standards and specifications:
|
|
114
|
+
|
|
115
|
+
- Model Context Protocol (MCP) Specification
|
|
116
|
+
https://modelcontextprotocol.io/
|
|
117
|
+
|
|
118
|
+
- OAuth 2.1 (draft-ietf-oauth-v2-1-13)
|
|
119
|
+
https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-13
|
|
120
|
+
|
|
121
|
+
- RFC 9728 - OAuth 2.0 Protected Resource Metadata
|
|
122
|
+
https://datatracker.ietf.org/doc/html/rfc9728
|
|
123
|
+
|
|
124
|
+
- RFC 8707 - Resource Indicators for OAuth 2.0
|
|
125
|
+
https://datatracker.ietf.org/doc/html/rfc8707
|
|
126
|
+
|
|
127
|
+
- RFC 7662 - OAuth 2.0 Token Introspection
|
|
128
|
+
https://datatracker.ietf.org/doc/html/rfc7662
|
|
129
|
+
|
|
130
|
+
- RFC 8414 - OAuth 2.0 Authorization Server Metadata
|
|
131
|
+
https://datatracker.ietf.org/doc/html/rfc8414
|
|
132
|
+
|
|
133
|
+
- RFC 7591 - OAuth 2.0 Dynamic Client Registration Protocol
|
|
134
|
+
https://datatracker.ietf.org/doc/html/rfc7591
|
|
135
|
+
|
|
136
|
+
- RFC 7636 - Proof Key for Code Exchange by OAuth Public Clients (PKCE)
|
|
137
|
+
https://datatracker.ietf.org/doc/html/rfc7636
|
|
138
|
+
|
|
139
|
+
================================================================================
|
|
140
|
+
|
|
141
|
+
TRADEMARKS
|
|
142
|
+
|
|
143
|
+
NitroStack, the NitroStack logo, and related marks are trademarks of the NitroStack
|
|
144
|
+
project. Use of these trademarks is subject to the trademark policy available
|
|
145
|
+
at https://nitrostack.vercel.app/.
|
|
146
|
+
|
|
147
|
+
================================================================================
|
|
148
|
+
|
|
149
|
+
For more information, visit:
|
|
150
|
+
- Website: https://nitrostack.vercel.app/
|
|
151
|
+
- Documentation: https://nitrostack-docs.vercel.app/
|
|
152
|
+
- GitHub: https://github.com/abhishekpanditofficial/nitrostack
|
|
153
|
+
|