UNPKG

bytefun

Version:

一个打通了原型设计、UI设计与代码转换、跨平台原生代码开发等的平台

126 lines 2.83 kB
{ "name": "bytefun", "displayName": "ByteFun", "description": "一个打通了原型设计、UI设计与代码转换、跨平台原生代码开发等的平台", "version": "1.0.21", "publisher": "bytefun", "license": "MIT", "homepage": "https://www.bytefungo.com", "bugs": { "url": "https://www.bytefungo.com/feedback" }, "keywords": [ "bytefun", "原型设计", "UI设计", "代码转换", "跨平台开发", "低代码", "可视化开发", "项目管理" ], "engines": { "vscode": "^1.74.0" }, "categories": [ "Other", "Extension Packs" ], "icon": "bytefun-logo.png", "galleryBanner": { "color": "#0070f3", "theme": "dark" }, "activationEvents": [ "*" ], "main": "./out/extension.js", "contributes": { "views": { "bytefunContainer": [ { "type": "webview", "id": "bytefunView", "name": "ByteFun" } ] }, "viewsContainers": { "activitybar": [ { "id": "bytefunContainer", "title": "ByteFun", "icon": "$(zap)" } ] }, "commands": [ { "command": "bytefun.openEditor", "title": "打开ByteFun编辑器", "icon": "$(globe)" }, { "command": "bytefun.openWorkspace", "title": "我的项目", "icon": "$(folder)" }, { "command": "bytefun.openLibrary", "title": "我的库", "icon": "$(library)" }, { "command": "bytefun.openDesignFile", "title": "设计稿", "icon": "$(preview)" }, { "command": "bytefun.openRequirementsDoc", "title": "需求文档", "icon": "$(book)" } ], "menus": { "view/title": [ { "command": "bytefun.openWorkspace", "when": "view == bytefunView", "group": "navigation@1" }, { "command": "bytefun.openLibrary", "when": "view == bytefunView", "group": "navigation@2" }, { "command": "bytefun.openDesignFile", "when": "view == bytefunView", "group": "navigation@3" }, { "command": "bytefun.openRequirementsDoc", "when": "view == bytefunView", "group": "navigation@4" } ] } }, "scripts": { "vscode:prepublish": "npm run compile", "compile": "tsc -p ./", "watch": "tsc -watch -p ./" }, "devDependencies": { "@types/node": "16.x", "@types/vscode": "^1.74.0", "@types/cheerio": "^0.22.31", "typescript": "^4.9.4" }, "dependencies": { "@types/yauzl": "^2.10.3", "yauzl": "^3.2.0", "puppeteer": "^21.0.0", "cheerio": "^1.0.0-rc.12" } }