{ "name": "ApiScan", "displayName": "API Scan", "description": "This tool can scan the Android APIs in OpenHarmony Projects", "keywords": [ "api_scan", "api" ], "icon": "images/APIScan.png", "version": "0.0.1", "engines": { "vscode": "^1.62.0" }, "categories": [ "Other" ], "activationEvents": [ "onStartupFinished" ], "publisher": "kaihong", "main": "./extension.js", "contributes": { "commands": [ { "command": "api_scan", "title": "API Scan" }, { "command": "api_scan_menu", "title": "API Scan" } ], "menus": { "explorer/context": [ { "when": "resourceScheme == file", "command": "api_scan" } ], "editor/context": [ { "command": "api_scan_menu" } ] } }, "scripts": { "lint": "eslint .", "pretest": "npm run lint", "test": "node ./test/runTest.js" }, "devDependencies": { "@types/glob": "^7.1.4", "@types/mocha": "^9.0.0", "@types/node": "14.x", "@types/vscode": "^1.62.0", "@vscode/test-electron": "^1.6.2", "eslint": "^8.1.0", "glob": "^7.1.7", "mocha": "^9.1.3", "webpack": "^5.64.4", "webpack-cli": "^4.9.1" }, "dependencies": { "compressing": "^1.5.1", "node-gyp": "^9.0.0", "stdio": "^2.1.1", "typescript": "^4.8.4", "vsce": "^2.11.0" }, "repository": { "type": "gitee", "url": "https://gitee.com/openharmony/napi_generator/tree/master/hdc/api" } }