nitrostack 1.0.13 → 1.0.15
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 +29 -295
- package/README.md +8 -0
- package/package.json +8 -6
- package/templates/typescript-auth/package.json +15 -2
- package/src/studio/package-lock.json +0 -2696
- package/templates/typescript-auth-api-key/.env +0 -15
- package/templates/typescript-auth-api-key/package-lock.json +0 -124
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# API Key Authentication - Test Keys
|
|
2
|
-
# ⚠️ These are demo keys for testing only - DO NOT use in production!
|
|
3
|
-
|
|
4
|
-
# Test API Keys
|
|
5
|
-
API_KEY_1=sk_test_public_demo_key_12345
|
|
6
|
-
API_KEY_2=sk_test_admin_demo_key_67890
|
|
7
|
-
|
|
8
|
-
# You can add more keys by incrementing the number
|
|
9
|
-
# API_KEY_3=your_custom_key_here
|
|
10
|
-
# API_KEY_4=another_key_here
|
|
11
|
-
|
|
12
|
-
# Note: Keys are loaded automatically by ApiKeyModule
|
|
13
|
-
# The module reads all environment variables matching the pattern API_KEY_*
|
|
14
|
-
|
|
15
|
-
|
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "api-key-auth-mcp-server",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"lockfileVersion": 3,
|
|
5
|
-
"requires": true,
|
|
6
|
-
"packages": {
|
|
7
|
-
"": {
|
|
8
|
-
"name": "api-key-auth-mcp-server",
|
|
9
|
-
"version": "1.0.0",
|
|
10
|
-
"license": "MIT",
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"nitrostack": "file:../../",
|
|
13
|
-
"zod": "^3.23.8"
|
|
14
|
-
},
|
|
15
|
-
"devDependencies": {
|
|
16
|
-
"@types/node": "^20",
|
|
17
|
-
"typescript": "^5"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"../..": {
|
|
21
|
-
"version": "1.0.0",
|
|
22
|
-
"license": "MIT",
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"@google/generative-ai": "^0.24.1",
|
|
25
|
-
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
26
|
-
"bcryptjs": "^2.4.3",
|
|
27
|
-
"better-sqlite3": "^11.8.1",
|
|
28
|
-
"chokidar": "^3.6.0",
|
|
29
|
-
"commander": "^12.1.0",
|
|
30
|
-
"cors": "^2.8.5",
|
|
31
|
-
"dotenv": "^17.2.3",
|
|
32
|
-
"express": "^4.21.2",
|
|
33
|
-
"fs-extra": "^11.3.2",
|
|
34
|
-
"http-proxy-middleware": "^3.0.3",
|
|
35
|
-
"inquirer": "^12.10.0",
|
|
36
|
-
"jose": "^6.1.0",
|
|
37
|
-
"jsonwebtoken": "^9.0.2",
|
|
38
|
-
"open": "^10.2.0",
|
|
39
|
-
"openai": "^6.5.0",
|
|
40
|
-
"ora": "^9.0.0",
|
|
41
|
-
"reflect-metadata": "^0.2.1",
|
|
42
|
-
"uuid": "^11.0.5",
|
|
43
|
-
"winston": "^3.17.0",
|
|
44
|
-
"ws": "^8.18.3",
|
|
45
|
-
"zod": "^3.24.1",
|
|
46
|
-
"zod-to-json-schema": "^3.24.6"
|
|
47
|
-
},
|
|
48
|
-
"bin": {
|
|
49
|
-
"nitrostack": "dist/cli/index.js"
|
|
50
|
-
},
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"@types/bcryptjs": "^2.4.6",
|
|
53
|
-
"@types/better-sqlite3": "^7.6.12",
|
|
54
|
-
"@types/cors": "^2.8.19",
|
|
55
|
-
"@types/express": "^5.0.0",
|
|
56
|
-
"@types/fs-extra": "^11.0.4",
|
|
57
|
-
"@types/jest": "^29.5.14",
|
|
58
|
-
"@types/jsonwebtoken": "^9.0.7",
|
|
59
|
-
"@types/node": "^22.10.5",
|
|
60
|
-
"@types/react": "^19.2.2",
|
|
61
|
-
"@types/uuid": "^10.0.0",
|
|
62
|
-
"@types/ws": "^8.18.1",
|
|
63
|
-
"jest": "^29.7.0",
|
|
64
|
-
"ts-jest": "^29.2.5",
|
|
65
|
-
"typescript": "^5.7.2"
|
|
66
|
-
},
|
|
67
|
-
"engines": {
|
|
68
|
-
"node": ">=18.0.0"
|
|
69
|
-
},
|
|
70
|
-
"peerDependencies": {
|
|
71
|
-
"react": "^18.0.0 || ^19.0.0"
|
|
72
|
-
},
|
|
73
|
-
"peerDependenciesMeta": {
|
|
74
|
-
"react": {
|
|
75
|
-
"optional": true
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
"node_modules/@types/node": {
|
|
80
|
-
"version": "20.19.23",
|
|
81
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.23.tgz",
|
|
82
|
-
"integrity": "sha512-yIdlVVVHXpmqRhtyovZAcSy0MiPcYWGkoO4CGe/+jpP0hmNuihm4XhHbADpK++MsiLHP5MVlv+bcgdF99kSiFQ==",
|
|
83
|
-
"dev": true,
|
|
84
|
-
"license": "MIT",
|
|
85
|
-
"dependencies": {
|
|
86
|
-
"undici-types": "~6.21.0"
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"node_modules/nitrostack": {
|
|
90
|
-
"resolved": "../..",
|
|
91
|
-
"link": true
|
|
92
|
-
},
|
|
93
|
-
"node_modules/typescript": {
|
|
94
|
-
"version": "5.9.3",
|
|
95
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
96
|
-
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
97
|
-
"dev": true,
|
|
98
|
-
"license": "Apache-2.0",
|
|
99
|
-
"bin": {
|
|
100
|
-
"tsc": "bin/tsc",
|
|
101
|
-
"tsserver": "bin/tsserver"
|
|
102
|
-
},
|
|
103
|
-
"engines": {
|
|
104
|
-
"node": ">=14.17"
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
"node_modules/undici-types": {
|
|
108
|
-
"version": "6.21.0",
|
|
109
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
110
|
-
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
111
|
-
"dev": true,
|
|
112
|
-
"license": "MIT"
|
|
113
|
-
},
|
|
114
|
-
"node_modules/zod": {
|
|
115
|
-
"version": "3.25.76",
|
|
116
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
117
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
118
|
-
"license": "MIT",
|
|
119
|
-
"funding": {
|
|
120
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|