@nahisaho/katashiro 2.0.6 → 2.0.7
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 +17 -16
- package/scripts/postinstall.js +4 -2
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nahisaho/katashiro",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "KATASHIRO - VS Code Agent Mode向け情報収集・分析・生成システム(オールインワンパッケージ)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"bin": {
|
|
9
|
-
"katashiro": "dist/cli.js"
|
|
9
|
+
"katashiro": "dist/cli.js",
|
|
10
|
+
"katashiro-setup": "scripts/postinstall.js"
|
|
10
11
|
},
|
|
11
12
|
"files": [
|
|
12
13
|
"dist",
|
|
@@ -108,20 +109,20 @@
|
|
|
108
109
|
"url": "https://github.com/nahisaho/katashiro/issues"
|
|
109
110
|
},
|
|
110
111
|
"dependencies": {
|
|
111
|
-
"@nahisaho/katashiro-analyzer": "^2.0.
|
|
112
|
-
"@nahisaho/katashiro-collector": "^2.0.
|
|
113
|
-
"@nahisaho/katashiro-core": "^2.0.
|
|
114
|
-
"@nahisaho/katashiro-evaluation": "^2.0.
|
|
115
|
-
"@nahisaho/katashiro-feedback": "^2.0.
|
|
116
|
-
"@nahisaho/katashiro-generator": "^2.0.
|
|
117
|
-
"@nahisaho/katashiro-knowledge": "^2.0.
|
|
118
|
-
"@nahisaho/katashiro-llm": "^2.0.
|
|
119
|
-
"@nahisaho/katashiro-observability": "^2.0.
|
|
120
|
-
"@nahisaho/katashiro-orchestrator": "^2.0.
|
|
121
|
-
"@nahisaho/katashiro-rag": "^2.0.
|
|
122
|
-
"@nahisaho/katashiro-sandbox": "^2.0.
|
|
123
|
-
"@nahisaho/katashiro-security": "^2.0.
|
|
124
|
-
"@nahisaho/katashiro-workspace": "^2.0.
|
|
112
|
+
"@nahisaho/katashiro-analyzer": "^2.0.6",
|
|
113
|
+
"@nahisaho/katashiro-collector": "^2.0.6",
|
|
114
|
+
"@nahisaho/katashiro-core": "^2.0.6",
|
|
115
|
+
"@nahisaho/katashiro-evaluation": "^2.0.6",
|
|
116
|
+
"@nahisaho/katashiro-feedback": "^2.0.6",
|
|
117
|
+
"@nahisaho/katashiro-generator": "^2.0.6",
|
|
118
|
+
"@nahisaho/katashiro-knowledge": "^2.0.6",
|
|
119
|
+
"@nahisaho/katashiro-llm": "^2.0.6",
|
|
120
|
+
"@nahisaho/katashiro-observability": "^2.0.6",
|
|
121
|
+
"@nahisaho/katashiro-orchestrator": "^2.0.6",
|
|
122
|
+
"@nahisaho/katashiro-rag": "^2.0.6",
|
|
123
|
+
"@nahisaho/katashiro-sandbox": "^2.0.6",
|
|
124
|
+
"@nahisaho/katashiro-security": "^2.0.6",
|
|
125
|
+
"@nahisaho/katashiro-workspace": "^2.0.6",
|
|
125
126
|
"commander": "^12.1.0"
|
|
126
127
|
},
|
|
127
128
|
"engines": {
|
package/scripts/postinstall.js
CHANGED
|
@@ -58,8 +58,10 @@ async function main() {
|
|
|
58
58
|
return;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
//
|
|
62
|
-
|
|
61
|
+
// node_modules内から実行されている場合のみ動作
|
|
62
|
+
// 開発モード判定: packageRootがnode_modules内にないかチェック
|
|
63
|
+
const isInNodeModules = packageRoot.includes('node_modules');
|
|
64
|
+
if (!isInNodeModules) {
|
|
63
65
|
console.log('📦 KATASHIRO: Skipping postinstall (development mode)');
|
|
64
66
|
return;
|
|
65
67
|
}
|