mm_os
Version:
MM_OS服务端架构,用于快速构建应用程序,支持网站建设、小程序后台、AI应用、物联网(IOT/AIOT)、游戏服务端等多种场景。
22 lines • 538 B
JSON
{
// 名称
"name": "${name}",
// 标题
"title": "${title || '示例模块'}",
// 描述
"description": "${description || '介绍该模块有什么用'}",
// 版本号
"version": "${version || '1.0.0'}",
// 作者
"author": "${author || 'mos'}",
// 作用域,决定加载到什么区域
"scope": "${scope || 'server'}",
// 主文件
"main": "${main || 'index.js'}",
// 状态 0:禁用 1:启用
"state": 1,
// 排序,越小越靠前
"sort": 100,
// 依赖的npm module
"dependencies": []
}