代码拉取完成,页面将自动刷新
同步操作将从 合宙Luat/LuatIDE 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
{
"name": "luatide",
"displayName": "luatide",
"description": "合宙官方IDE",
"version": "2.0.1",
"publisher": "luater",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"author": {
"name": "LUATER"
},
"license": "LGPL",
"keywords": [
"luat",
"LuatIDE",
"lua",
"harmony",
"liteos",
"embedded"
],
"repository": {
"type": "git",
"url": "http://github.com/openLuat/luatide"
},
"bugs": {
"url": "http://github.com/openLuat/luatide"
},
"activationEvents": [
"onLanguage:lua",
"onView:luatide-activeBar",
"onCommand:luatide.Open",
"onCommand:luatide-history-project.createProject",
"onView:luatide-history-project",
"onView:luatide-activity-project",
"onView:luatide-tools-hub",
"onCommand:luatide-history-project.openProject",
"onCommand:luatide-history-project.Home",
"onCommand:luatide-activity-project.runProject",
"onCommand:luatide-activity-project.debugProject",
"onCommand:luatide-history-project.deleteProject",
"onCommand:luatide-history-project.Project.active",
"onCommand:luatide-activity-project.Project.delete",
"onCommand:luatide-history-project.Project.refresh",
"onCommand:luatide-activity-project.Project.refresh",
"onCommand:luatide-activity-project.sourceFile.delete",
"onCommand:luatide-activity-project.configOperation",
"onCommand:luatide-ui.design"
],
"main": "./out/extension.js",
"scripts": {
"prepublish": "tsc -p ./src",
"compile": "tsc -p ./src",
"tslint": "tslint ./src/**/*.ts",
"watch": "tsc -w -p ./src",
"test": "mocha -u tdd ./out/tests/",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/uuid": "^8.3.3",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vscode/test-electron": "^1.6.2",
"eslint": "^8.1.0",
"glob": "^7.1.7",
"mocha": "^9.1.3",
"typescript": "^4.4.4"
},
"dependencies": {
"await-notify": "^1.0.1",
"compressing": "^1.5.1",
"node-fetch": "^2.6.6",
"uuid": "^8.3.2",
"vscode-debugadapter": "^1.51.0"
},
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "luatide-activeBar",
"title": "LuatIDE",
"icon": "./resource/themeSvg/dark/activebar.svg"
}
]
},
"views": {
"luatide-activeBar": [
{
"id": "luatide-history-project",
"name": "用户工程"
},
{
"id": "luatide-activity-project",
"name": "活动工程"
},
{
"id": "luatide-tools-hub",
"name": "工具集合",
"visibility": "collapsed"
}
]
},
"menus": {
"view/title": [
{
"command": "luatide-history-project.createProject",
"when": "view == luatide-history-project",
"group": "navigation@0"
},
{
"command": "luatide-history-project.openProject",
"when": "view == luatide-history-project",
"group": "navigation@1"
},
{
"command": "luatide-history-project.Home",
"when": "view == luatide-history-project",
"group": "navigation@2"
},
{
"command": "luatide-activity-project.runProject",
"when": "view == luatide-activity-project",
"group": "navigation@4"
},
{
"command": "luatide-activity-project.debugProject",
"when": "view == luatide-activity-project",
"group": "navigation@3"
},
{
"command": "luatide-activity-project.Project.delete",
"when": "view == luatide-activity-project",
"group": "navigation@0"
},
{
"command": "luatide-activity-project.configOperation",
"when": "view == luatide-activity-project",
"group": "navigation@1"
},
{
"command": "luatide-ui.design",
"when": "view == luatide-activity-project",
"group": "navigation@2"
}
],
"view/item/context": [
{
"command": "luatide-history-project.Project.active",
"when": "view == luatide-history-project",
"group": "inline"
},
{
"command": "luatide-history-project.deleteProject",
"when": "view == luatide-history-project",
"group": "inline"
},
{
"command": "luatide-activity-project.sourceFile.delete",
"when": "view == luatide-activity-project",
"group": "inline"
}
],
"editor/context": [
{
"command": "luatide-activity-project.runProject",
"when": "resourceLangId == lua",
"group": "navigation@0"
},
{
"command": "luatide-activity-project.debugProject",
"when": "resourceLangId == lua",
"group": "navigation@0"
}
]
},
"commands": [
{
"command": "luatide-history-project.createProject",
"title": "新建工程",
"icon": {
"dark": "./resource/themeSvg/dark/createProject.svg",
"light": "./resource/themeSvg/light/createProject.svg"
}
},
{
"command": "luatide-history-project.openProject",
"title": "打开工程",
"icon": {
"dark": "./resource/themeSvg/dark/openProject.svg",
"light": "./resource/themeSvg/light/openProject.svg"
}
},
{
"command": "luatide-history-project.Home",
"title": "主页",
"icon": {
"dark": "./resource/themeSvg/dark/Home.svg",
"light": "./resource/themeSvg/light/Home.svg"
}
},
{
"command": "luatide-activity-project.runProject",
"title": "LuatIDE:Run Project",
"icon": {
"dark": "./resource/themeSvg/dark/runProject.svg",
"light": "./resource/themeSvg/light/runProject.svg"
}
},
{
"command": "luatide-activity-project.debugProject",
"title": "LuatIDE:Debug Project",
"icon": {
"dark": "./resource/themeSvg/dark/debugProject.svg",
"light": "./resource/themeSvg/light/debugProject.svg"
}
},
{
"command": "luatide-history-project.deleteProject",
"title": "删除工程文件",
"icon": {
"dark": "./resource/themeSvg/dark/delete.svg",
"light": "./resource/themeSvg/light/delete.svg"
}
},
{
"command": "luatide-history-project.Project.active",
"title": "激活工程",
"icon": {
"dark": "./resource/themeSvg/dark/activeProject.svg",
"light": "./resource/themeSvg/light/activeProject.svg"
}
},
{
"command": "luatide-activity-project.Project.delete",
"title": "删除活动工程",
"icon": {
"dark": "./resource/themeSvg/dark/delete.svg",
"light": "./resource/themeSvg/light/delete.svg"
}
},
{
"command": "luatide.Open",
"title": "打开工程"
},
{
"command": "luatide-history-project.Project.refresh",
"title": "刷新用户工程列表"
},
{
"command": "luatide-activity-project.Project.refresh",
"title": "刷新活动工程列表"
},
{
"command": "luatide-activity-project.sourceFile.delete",
"title": "删除工程内资源文件",
"icon": {
"dark": "./resource/themeSvg/dark/delete.svg",
"light": "./resource/themeSvg/light/delete.svg"
}
},
{
"command": "luatide-activity-project.configOperation",
"title": "活动工程配置",
"icon": {
"dark": "./resource/themeSvg/dark/projectConfig.svg",
"light": "./resource/themeSvg/light/projectConfig.svg"
}
},
{
"command": "luatide-ui.design",
"title": "UI设计器",
"icon": {
"dark": "./resource/themeSvg/dark/uiDesign.svg",
"light": "./resource/themeSvg/light/uiDesign.svg"
}
}
],
"breakpoints": [
{
"language": "lua"
}
],
"debuggers": [
{
"type": "luat",
"label": "LuatIDE Debug",
"program": "./out/mockDebug.js",
"runtime": "node",
"languages": [
"lua"
],
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "Absolute path to a text file.",
"default": "${workspaceFolder}"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": true
},
"trace": {
"type": "boolean",
"description": "Enable logging of the Debug Adapter Protocol.",
"default": true
}
}
}
},
"initialConfigurations": [
{
"type": "luat",
"request": "launch",
"name": "Ask for file name",
"program": "${workspaceFolder}/${command:AskForProgramName}",
"stopOnEntry": true
}
],
"configurationSnippets": [
{
"label": "Luat_IDE Debug: Launch",
"description": "A new configuration for 'debugging' a user selected lua file.",
"body": {
"type": "luat",
"request": "launch",
"name": "Ask for file name",
"program": "^\"\\${workspaceFolder}/\\${command:AskForProgramName}\"",
"stopOnEntry": true
}
}
],
"variables": {
"AskForProgramName": "extension.mock-debug.getProgramName"
}
}
],
"snippets": [
{
"language": "lua",
"path": "./src/editor/snippets/luatos-air.json"
},
{
"language": "lua",
"path": "./src/editor/snippets/luatos-soc.json"
}
],
"viewsWelcome": [
{
"view": "luatide-history-project",
"contents": "[欢迎下载LuatIDE插件.](command:luatide.quickstart)\n[点击快速上手](command:luatide.quickstart)"
}
]
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。