Skip to content

Commit ac72799

Browse files
add model manager plugin
1 parent 5013093 commit ac72799

9 files changed

Lines changed: 1366 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import entry from './src/Main.vue'
2+
import metaData from './meta'
3+
4+
export default {
5+
...metaData,
6+
entry
7+
// apis: {}, // 预留,后续可暴露API
8+
// metas: [], // 预留,后续可注册元服务
9+
// options: {}, // 预留,后续可加自定义配置
10+
// components: {} // 预留,后续可加子组件
11+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default {
2+
id: 'engine.plugins.modelmanager',
3+
title: '模型管理',
4+
type: 'plugins',
5+
width: 600,
6+
icon: 'plugin-icon-i18n'
7+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "@opentiny/tiny-engine-plugin-model-manager",
3+
"version": "2.7.0-rc.0",
4+
"publishConfig": {
5+
"access": "public"
6+
},
7+
"scripts": {
8+
"build": "vite build"
9+
},
10+
"type": "module",
11+
"main": "dist/index.js",
12+
"module": "dist/index.js",
13+
"files": [
14+
"dist"
15+
],
16+
"keywords": [
17+
"tiny-engine-plugin",
18+
"model-manager"
19+
],
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/opentiny/tiny-engine",
23+
"directory": "packages/plugins/model-manager"
24+
},
25+
"bugs": {
26+
"url": "https://github.com/opentiny/tiny-engine/issues"
27+
},
28+
"author": "OpenTiny Team",
29+
"license": "MIT",
30+
"homepage": "https://opentiny.design/tiny-engine",
31+
"devDependencies": {
32+
"@vitejs/plugin-vue": "^5.1.2",
33+
"@vitejs/plugin-vue-jsx": "^4.0.1",
34+
"vite": "^5.4.2"
35+
},
36+
"peerDependencies": {
37+
"@opentiny/vue": "^3.20.0",
38+
"@opentiny/vue-icon": "^3.20.0",
39+
"@opentiny/vue-renderless": "^3.20.0",
40+
"vue": "^3.4.15"
41+
}
42+
}

0 commit comments

Comments
 (0)