-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "abos-binding-tree",
"version": "0.1.0",
"description": "用来查看项目里 当前场景的绑定情况",
"author": "Abos Freeman",
"main": "main.js",
"main-menu": {
"Panel/Binding Tree": {
"message": "abos-binding-tree:open"
}
},
"panel": {
"main": "panel/index.js",
"type": "dockable",
"title": "Binding Tree View",
"width": 400,
"height": 600
},
"abosPlugin": {
"config": {
"description": "This is where plugin configuratons can define once and for all."
},
"resources": [
{
"name": "pluginPanel",
"path": "panel/plugin-panel.js"
}
],
"comp_exclude": [
"<(Widget|Sprite|Label)>"
],
"vue": {
"resources": [
{
"name": "plugin-panel",
"html": "panel/plugin-panel.html",
"js": "panel/plugin-panel.js"
},
{
"name": "tree-node",
"html": "panel/html/tree-node.html",
"js": "panel/components/tree-node.js"
},
{
"name": "node-comp",
"html": "panel/html/node-comp.html",
"js": "panel/components/node-comp.js"
},
{
"name": "comp-prop",
"html": "panel/html/comp-prop.html",
"js": "panel/components/comp-prop.js"
}
]
}
}
}