blade-code 0.0.12 → 0.0.13
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.en.md +35 -45
- package/README.md +22 -30
- package/dist/blade.js +398 -224
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blade-code",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "🗡️ Blade Code - 智能代码助手命令行工具",
|
|
6
6
|
"type": "module",
|
|
@@ -21,14 +21,15 @@
|
|
|
21
21
|
"test:all": "vitest run --config vitest.config.ts",
|
|
22
22
|
"test:unit": "node scripts/test.js unit",
|
|
23
23
|
"test:integration": "node scripts/test.js integration",
|
|
24
|
-
"test:
|
|
25
|
-
"test:security": "node scripts/test.js security",
|
|
24
|
+
"test:cli": "node scripts/test.js cli",
|
|
26
25
|
"test:coverage": "node scripts/test.js all --coverage",
|
|
27
26
|
"test:unit:coverage": "node scripts/test.js unit --coverage",
|
|
28
27
|
"test:integration:coverage": "node scripts/test.js integration --coverage",
|
|
28
|
+
"test:cli:coverage": "node scripts/test.js cli --coverage",
|
|
29
29
|
"test:watch": "vitest --watch --config vitest.config.ts",
|
|
30
|
-
"test:unit:watch": "vitest --watch --config vitest.
|
|
31
|
-
"test:integration:watch": "vitest --watch --config vitest.
|
|
30
|
+
"test:unit:watch": "vitest --watch --config vitest.config.ts --project unit",
|
|
31
|
+
"test:integration:watch": "vitest --watch --config vitest.config.ts --project integration",
|
|
32
|
+
"test:cli:watch": "vitest --watch --config vitest.config.ts --project cli",
|
|
32
33
|
"test:debug": "node scripts/test.js all --debug",
|
|
33
34
|
"test:verbose": "node scripts/test.js all --verbose",
|
|
34
35
|
"test:ci": "vitest run --config vitest.config.ts --coverage --reporter=verbose",
|
|
@@ -108,6 +109,8 @@
|
|
|
108
109
|
"axios": "^1.12.2",
|
|
109
110
|
"chalk": "^5.4.1",
|
|
110
111
|
"diff": "^8.0.2",
|
|
112
|
+
"fuse.js": "^7.1.0",
|
|
113
|
+
"glob": "^11.0.3",
|
|
111
114
|
"ink": "^6.2.3",
|
|
112
115
|
"ink-big-text": "^2.0.0",
|
|
113
116
|
"ink-gradient": "^3.0.0",
|