@deveco/deveco-code-darwin-arm64 0.1.7 → 0.1.8-rc.0

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 CHANGED
@@ -241,7 +241,6 @@ DevEco Code 集成了常用 HarmonyOS 开发工具能力:
241
241
  | `hdc_log` | 收集/清理设备日志/查看连接模拟器 |
242
242
  | `verify_ui` | 执行 UI 操作验证功能是否正确 |
243
243
  | `arkts_check` | ArkTS 静态语法检查 |
244
- | `arkts_knowledge_search` | HarmonyOS 知识搜索 |
245
244
  | `switch_cwd` | 切换构建项目路径 |
246
245
 
247
246
  常见场景包括:从零到一创建 HarmonyOS 工程、增量开发页面、修复编译报错、真机调试。
package/bin/deveco CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deveco/deveco-code-darwin-arm64",
3
- "version": "0.1.7",
3
+ "version": "0.1.8-rc.0",
4
4
  "preferUnplugged": true,
5
5
  "os": [
6
6
  "darwin"
@@ -0,0 +1 @@
1
+ 1.2.2
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "deveco-cli-vendor",
3
+ "private": true,
4
+ "dependencies": {
5
+ "@deveco/deveco-cli": "1.2.2"
6
+ }
7
+ }
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "ui-verification-mcp",
3
+ "version": "0.0.16",
4
+ "description": "",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "ui-verification-mcp": "bin/ui-verification-mcp.cjs"
9
+ },
10
+ "exports": {},
11
+ "files": [
12
+ "dist",
13
+ "bin"
14
+ ],
15
+ "engines": {
16
+ "node": ">=18"
17
+ },
18
+ "scripts": {
19
+ "build": "vite build",
20
+ "prepublishOnly": "npm run build",
21
+ "test": "vitest",
22
+ "test:real": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/",
23
+ "test:real:phone": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common",
24
+ "test:real:pc": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common tests/realCases/pc",
25
+ "test:emu:common": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples",
26
+ "test:emu:pc": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/pc/preset tests/realCases/pc/customSamples",
27
+ "test:emu:tripleFold": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/tripleFold/preset tests/realCases/tripleFold/customSamples",
28
+ "test:emu:wideFold": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/wideFold/preset tests/realCases/wideFold/customSamples",
29
+ "test:emu:2in1Foldable": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/customSamples tests/realCases/2in1Foldable",
30
+ "test:emu:devSelfTest": "tsx tests/scripts/runAndAnalyze.ts tests/realCases/common/preset tests/realCases/common/published tests/realCases/common/customSamples/driverExam tests/realCases/common/customSamples/musicPlayer tests/realCases/common/customSamples/oh-bill tests/realCases/common/customSamples/readingApp",
31
+ "prelint": "tsc --noEmit",
32
+ "lint": "eslint . --ext .ts --report-unused-disable-directives --max-warnings 0",
33
+ "lint:fix": "eslint . --ext .ts --fix"
34
+ },
35
+ "keywords": [],
36
+ "author": "",
37
+ "dependencies": {
38
+ "ajv": "8.18.0"
39
+ },
40
+ "devDependencies": {
41
+ "@eslint/js": "^9.39.3",
42
+ "@modelcontextprotocol/sdk": "^1.29.0",
43
+ "@types/node": "24.10.1",
44
+ "eslint": "^9.39.3",
45
+ "eslint-config-prettier": "^10.1.8",
46
+ "eslint-plugin-prettier": "^5.2.6",
47
+ "eslint-plugin-simple-import-sort": "^12.1.1",
48
+ "globals": "^17.4.0",
49
+ "openai": "^6.39.1",
50
+ "tsx": "^4.22.4",
51
+ "typescript": "^5.9.3",
52
+ "typescript-eslint": "^8.55.0",
53
+ "vite": "^7.3.5",
54
+ "vitest": "^4.1.4"
55
+ },
56
+ "allowScripts": {
57
+ "esbuild@0.28.1": true
58
+ }
59
+ }