depwire-cli 1.1.4 → 1.1.6
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 +1 -3
- package/scripts/postinstall.js +0 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "depwire-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "Dependency graph + 17 MCP tools for AI coding assistants. Impact analysis, health scoring, security scanner.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"dev": "tsup src/index.ts --format esm --watch",
|
|
17
17
|
"start": "node dist/index.js",
|
|
18
18
|
"build:mcpb": "npm run build && ./scripts/build-mcpb.sh",
|
|
19
|
-
"postinstall": "node scripts/postinstall.js",
|
|
20
19
|
"postversion": "node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('./package.json','utf8'));const s=JSON.parse(fs.readFileSync('./server.json','utf8'));s.version=p.version;s.packages[0].version=p.version;fs.writeFileSync('./server.json',JSON.stringify(s,null,2)+'\\n');console.log('server.json updated to '+p.version);\" && git add server.json"
|
|
21
20
|
},
|
|
22
21
|
"keywords": [
|
|
@@ -59,7 +58,6 @@
|
|
|
59
58
|
"homepage": "https://depwire.dev",
|
|
60
59
|
"files": [
|
|
61
60
|
"dist",
|
|
62
|
-
"scripts/postinstall.js",
|
|
63
61
|
"README.md",
|
|
64
62
|
"LICENSE",
|
|
65
63
|
"icon.png"
|
package/scripts/postinstall.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
const message = `
|
|
4
|
-
╔═══════════════════════════════════════════════════════╗
|
|
5
|
-
║ ║
|
|
6
|
-
║ ✅ depwire-cli installed successfully! ║
|
|
7
|
-
║ ║
|
|
8
|
-
║ Get started: ║
|
|
9
|
-
║ depwire parse . ║
|
|
10
|
-
║ depwire health . ║
|
|
11
|
-
║ depwire security . ║
|
|
12
|
-
║ ║
|
|
13
|
-
║ 📊 Cloud dashboard (free): ║
|
|
14
|
-
║ app.depwire.dev ║
|
|
15
|
-
║ ║
|
|
16
|
-
║ 📖 Docs: depwire.dev ║
|
|
17
|
-
║ ⭐ GitHub: github.com/depwire/depwire ║
|
|
18
|
-
║ ║
|
|
19
|
-
╚═══════════════════════════════════════════════════════╝
|
|
20
|
-
`;
|
|
21
|
-
|
|
22
|
-
// Only show in interactive terminals, not in CI
|
|
23
|
-
if (process.stdout.isTTY) {
|
|
24
|
-
console.log(message);
|
|
25
|
-
}
|