@awarecorp/mcp-logger 0.0.4-dev.0 → 0.0.4
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/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awarecorp/mcp-logger",
|
|
3
|
-
"version": "0.0.4
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Unified MCP observability solution - SDK for code integration and CLI for zero-config wrapping",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"version:minor": "npm version minor",
|
|
30
30
|
"version:major": "npm version major",
|
|
31
31
|
"version:dev": "npm version prerelease --preid=dev",
|
|
32
|
-
"version:stable": "
|
|
33
|
-
"version:next-dev:patch": "node -e \"const pkg=require('./package.json'); const match=pkg.version.match(/^(
|
|
34
|
-
"version:next-dev:minor": "node -e \"const pkg=require('./package.json'); const match=pkg.version.match(/^(
|
|
35
|
-
"version:next-dev:major": "node -e \"const pkg=require('./package.json'); const match=pkg.version.match(/^(
|
|
32
|
+
"version:stable": "node -e \"const pkg=require('./package.json'); pkg.version=pkg.version.replace(/-dev\\.\\d+$/,''); require('fs').writeFileSync('package.json',JSON.stringify(pkg,null,2)+'\\n'); console.log('Version updated to',pkg.version)\"",
|
|
33
|
+
"version:next-dev:patch": "node -e \"const pkg=require('./package.json'); if(pkg.version.includes('-dev')){console.error('Error: version:next-dev should only be used on stable versions');console.error('Current version:',pkg.version);console.error('Run \\\"npm run version:stable\\\" first');process.exit(1);} const match=pkg.version.match(/^(\\d+)\\.(\\d+)\\.(\\d+)/); const newVer=match[1]+'.'+match[2]+'.'+(parseInt(match[3])+1)+'-dev.0'; pkg.version=newVer; require('fs').writeFileSync('package.json',JSON.stringify(pkg,null,2)+'\\n'); console.log('Version updated to',newVer)\"",
|
|
34
|
+
"version:next-dev:minor": "node -e \"const pkg=require('./package.json'); if(pkg.version.includes('-dev')){console.error('Error: version:next-dev should only be used on stable versions');console.error('Current version:',pkg.version);console.error('Run \\\"npm run version:stable\\\" first');process.exit(1);} const match=pkg.version.match(/^(\\d+)\\.(\\d+)\\.(\\d+)/); const newVer=match[1]+'.'+(parseInt(match[2])+1)+'.0-dev.0'; pkg.version=newVer; require('fs').writeFileSync('package.json',JSON.stringify(pkg,null,2)+'\\n'); console.log('Version updated to',newVer)\"",
|
|
35
|
+
"version:next-dev:major": "node -e \"const pkg=require('./package.json'); if(pkg.version.includes('-dev')){console.error('Error: version:next-dev should only be used on stable versions');console.error('Current version:',pkg.version);console.error('Run \\\"npm run version:stable\\\" first');process.exit(1);} const match=pkg.version.match(/^(\\d+)\\.(\\d+)\\.(\\d+)/); const newVer=(parseInt(match[1])+1)+'.0.0-dev.0'; pkg.version=newVer; require('fs').writeFileSync('package.json',JSON.stringify(pkg,null,2)+'\\n'); console.log('Version updated to',newVer)\""
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"mcp",
|