@nahisaho/katashiro 2.0.7 → 2.0.8
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 +15 -15
- package/scripts/postinstall.js +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nahisaho/katashiro",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"description": "KATASHIRO - VS Code Agent Mode向け情報収集・分析・生成システム(オールインワンパッケージ)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -109,20 +109,20 @@
|
|
|
109
109
|
"url": "https://github.com/nahisaho/katashiro/issues"
|
|
110
110
|
},
|
|
111
111
|
"dependencies": {
|
|
112
|
-
"@nahisaho/katashiro-analyzer": "^2.0.
|
|
113
|
-
"@nahisaho/katashiro-collector": "^2.0.
|
|
114
|
-
"@nahisaho/katashiro-core": "^2.0.
|
|
115
|
-
"@nahisaho/katashiro-evaluation": "^2.0.
|
|
116
|
-
"@nahisaho/katashiro-feedback": "^2.0.
|
|
117
|
-
"@nahisaho/katashiro-generator": "^2.0.
|
|
118
|
-
"@nahisaho/katashiro-knowledge": "^2.0.
|
|
119
|
-
"@nahisaho/katashiro-llm": "^2.0.
|
|
120
|
-
"@nahisaho/katashiro-observability": "^2.0.
|
|
121
|
-
"@nahisaho/katashiro-orchestrator": "^2.0.
|
|
122
|
-
"@nahisaho/katashiro-rag": "^2.0.
|
|
123
|
-
"@nahisaho/katashiro-sandbox": "^2.0.
|
|
124
|
-
"@nahisaho/katashiro-security": "^2.0.
|
|
125
|
-
"@nahisaho/katashiro-workspace": "^2.0.
|
|
112
|
+
"@nahisaho/katashiro-analyzer": "^2.0.7",
|
|
113
|
+
"@nahisaho/katashiro-collector": "^2.0.7",
|
|
114
|
+
"@nahisaho/katashiro-core": "^2.0.7",
|
|
115
|
+
"@nahisaho/katashiro-evaluation": "^2.0.7",
|
|
116
|
+
"@nahisaho/katashiro-feedback": "^2.0.7",
|
|
117
|
+
"@nahisaho/katashiro-generator": "^2.0.7",
|
|
118
|
+
"@nahisaho/katashiro-knowledge": "^2.0.7",
|
|
119
|
+
"@nahisaho/katashiro-llm": "^2.0.7",
|
|
120
|
+
"@nahisaho/katashiro-observability": "^2.0.7",
|
|
121
|
+
"@nahisaho/katashiro-orchestrator": "^2.0.7",
|
|
122
|
+
"@nahisaho/katashiro-rag": "^2.0.7",
|
|
123
|
+
"@nahisaho/katashiro-sandbox": "^2.0.7",
|
|
124
|
+
"@nahisaho/katashiro-security": "^2.0.7",
|
|
125
|
+
"@nahisaho/katashiro-workspace": "^2.0.7",
|
|
126
126
|
"commander": "^12.1.0"
|
|
127
127
|
},
|
|
128
128
|
"engines": {
|
package/scripts/postinstall.js
CHANGED
|
@@ -14,8 +14,9 @@ const __dirname = dirname(__filename);
|
|
|
14
14
|
// パッケージのルートディレクトリ
|
|
15
15
|
const packageRoot = resolve(__dirname, '..');
|
|
16
16
|
|
|
17
|
-
// npm install
|
|
18
|
-
|
|
17
|
+
// npm install を実行した元のディレクトリ(INIT_CWD環境変数を使用)
|
|
18
|
+
// INIT_CWD: npm/pnpm/yarnがinstallコマンドを実行したディレクトリ
|
|
19
|
+
const projectRoot = process.env.INIT_CWD || process.cwd();
|
|
19
20
|
|
|
20
21
|
// コピーするファイル/ディレクトリ
|
|
21
22
|
const filesToCopy = [
|