katashiro 2.7.0 → 2.7.2

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.
Files changed (3) hide show
  1. package/index.d.ts +4 -0
  2. package/index.js +4 -0
  3. package/package.json +14 -6
package/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ // katashiro - @nahisaho/katashiro のエイリアスパッケージ
2
+ // 型定義も @nahisaho/katashiro から re-export
3
+
4
+ export * from '@nahisaho/katashiro';
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ // katashiro - @nahisaho/katashiro のエイリアスパッケージ
2
+ // npm install katashiro で @nahisaho/katashiro と同じ機能が使えます
3
+
4
+ export * from '@nahisaho/katashiro';
package/package.json CHANGED
@@ -1,16 +1,21 @@
1
1
  {
2
2
  "name": "katashiro",
3
- "version": "2.7.0",
4
- "description": "KATASHIRO CLI - AI Research & Analysis Tool",
3
+ "version": "2.7.2",
4
+ "description": "KATASHIRO - VS Code Agent Mode向け情報収集・分析・生成システム(@nahisaho/katashiro のエイリアス)",
5
5
  "type": "module",
6
+ "main": "index.js",
7
+ "types": "index.d.ts",
6
8
  "bin": {
7
9
  "katashiro": "bin/katashiro.js"
8
10
  },
9
11
  "files": [
10
- "bin"
12
+ "bin",
13
+ "index.js",
14
+ "index.d.ts"
11
15
  ],
12
16
  "scripts": {
13
- "build": "echo 'No build required'"
17
+ "build": "echo 'No build required'",
18
+ "prepublishOnly": "npm run build"
14
19
  },
15
20
  "keywords": [
16
21
  "katashiro",
@@ -18,7 +23,10 @@
18
23
  "ai",
19
24
  "research",
20
25
  "analysis",
21
- "web-search"
26
+ "web-search",
27
+ "text-analysis",
28
+ "web-scraping",
29
+ "deep-research"
22
30
  ],
23
31
  "author": "nahisaho",
24
32
  "license": "MIT",
@@ -35,7 +43,7 @@
35
43
  "url": "https://github.com/nahisaho/katashiro/issues"
36
44
  },
37
45
  "dependencies": {
38
- "@nahisaho/katashiro": "2.5.2"
46
+ "@nahisaho/katashiro": "2.7.1"
39
47
  },
40
48
  "engines": {
41
49
  "node": ">=20.0.0"