i-repo 1.2.1 → 1.2.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.
- package/README.md +15 -0
- package/dist/bin/irepo.js +0 -0
- package/package.json +31 -23
package/README.md
CHANGED
|
@@ -25,9 +25,24 @@ i-Repo CLI は、ConMas i-Reporter のデータ取得・エクスポート・運
|
|
|
25
25
|
## Install
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
+
# npm(どの環境でも利用可能)
|
|
28
29
|
npm install -g i-repo
|
|
29
30
|
```
|
|
30
31
|
|
|
32
|
+
### pnpm 推奨(セキュリティ重視の場合)
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pnpm add -g i-repo
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
セキュリティを重視する環境では **pnpm でのインストールを推奨**します。pnpm は依存パッケージの
|
|
39
|
+
インストール時スクリプト(`postinstall` 等)を**既定でブロック**するため、悪意ある依存スクリプトが
|
|
40
|
+
実行される典型的なサプライチェーン攻撃を防げます(npm はこれらを既定で実行します)。
|
|
41
|
+
|
|
42
|
+
> npm を使う場合でも、`npm install -g i-repo --ignore-scripts` で同等のスクリプトブロックが可能です。
|
|
43
|
+
> なお i-repo の依存は全てバージョン固定済みのため、npm / pnpm のどちらで入れても取得される
|
|
44
|
+
> 依存バージョンは同一です。
|
|
45
|
+
|
|
31
46
|
## Quick Start
|
|
32
47
|
|
|
33
48
|
```bash
|
package/dist/bin/irepo.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "i-repo",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Modern CLI for ConMas i-Reporter - Built for humans and AI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"lint": "tsc --noEmit",
|
|
16
16
|
"test": "vitest run",
|
|
17
17
|
"test:watch": "vitest",
|
|
18
|
+
"audit": "npm audit --omit=dev --audit-level=high",
|
|
18
19
|
"prepublishOnly": "npm run build"
|
|
19
20
|
},
|
|
20
21
|
"files": [
|
|
@@ -31,33 +32,40 @@
|
|
|
31
32
|
"automation",
|
|
32
33
|
"i18n"
|
|
33
34
|
],
|
|
34
|
-
"author": "",
|
|
35
|
+
"author": "cimtops-dx <minoru.nishida@cimtops.co.jp>",
|
|
35
36
|
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/i-repo-community/i-repo.git"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/i-repo-community/i-repo#readme",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/i-repo-community/i-repo/issues"
|
|
44
|
+
},
|
|
36
45
|
"engines": {
|
|
37
|
-
"node": ">=
|
|
46
|
+
"node": ">=20.0.0"
|
|
38
47
|
},
|
|
39
48
|
"dependencies": {
|
|
40
|
-
"@inkjs/ui": "
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"gradient-string": "
|
|
46
|
-
"i-repo-sdk": "
|
|
47
|
-
"ink": "
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"playwright": "^1.58.2",
|
|
51
|
-
"pptxgenjs": "^4.0.1",
|
|
52
|
-
"react": "^18.3.1",
|
|
53
|
-
"sharp": "^0.34.5"
|
|
49
|
+
"@inkjs/ui": "2.0.0",
|
|
50
|
+
"@inquirer/prompts": "8.5.2",
|
|
51
|
+
"chalk": "5.6.2",
|
|
52
|
+
"cli-table3": "0.6.5",
|
|
53
|
+
"commander": "13.1.0",
|
|
54
|
+
"gradient-string": "3.0.0",
|
|
55
|
+
"i-repo-sdk": "1.0.2",
|
|
56
|
+
"ink": "5.2.1",
|
|
57
|
+
"ora": "9.4.0",
|
|
58
|
+
"react": "18.3.1"
|
|
54
59
|
},
|
|
55
60
|
"devDependencies": {
|
|
56
|
-
"@types/
|
|
57
|
-
"@types/
|
|
58
|
-
"@types/
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
|
|
61
|
+
"@types/gradient-string": "1.1.6",
|
|
62
|
+
"@types/node": "25.9.1",
|
|
63
|
+
"@types/react": "18.3.28",
|
|
64
|
+
"typescript": "5.9.3",
|
|
65
|
+
"vitest": "4.1.7"
|
|
66
|
+
},
|
|
67
|
+
"overrides": {
|
|
68
|
+
"fast-xml-parser": "5.8.0",
|
|
69
|
+
"ws": "8.21.0"
|
|
62
70
|
}
|
|
63
71
|
}
|