blade-code 0.0.19 → 0.0.21
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/LICENSE +21 -0
- package/dist/blade.js +427 -684
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blade-code",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "🗡️ Blade Code - 智能代码助手命令行工具",
|
|
6
6
|
"type": "module",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
18
|
"dev": "bun --watch src/blade.tsx",
|
|
19
|
-
"build": "rm -rf dist && bun
|
|
19
|
+
"build": "rm -rf dist && bun run scripts/build.ts",
|
|
20
20
|
"start": "bun run dist/blade.js",
|
|
21
21
|
"test": "node scripts/test.js",
|
|
22
22
|
"test:all": "vitest run --config vitest.config.ts",
|
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
"@biomejs/biome": "^2.2.4",
|
|
89
89
|
"@testing-library/react": "^16.2.0",
|
|
90
90
|
"@testing-library/user-event": "^14.5.0",
|
|
91
|
+
"@types/bun": "^1.3.4",
|
|
91
92
|
"@types/diff": "^8.0.0",
|
|
92
93
|
"@types/inquirer": "^9.0.8",
|
|
93
94
|
"@types/json-schema": "^7.0.15",
|