-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "database",
"displayName": "数据库管理插件",
"description": "SSCMS 数据库管理插件能够实现数据库管理,进行SQL查询以及执行SQL命令",
"version": "1.3.0",
"license": "AGPL-3.0",
"publisher": "sscms",
"engines": {
"sscms": "^7.3.0"
},
"categories": [
"Other"
],
"keywords": [
"数据库",
"SQL查询",
"SQL命令"
],
"repository": {
"type": "git",
"url": "https://github.com/siteserver/sscms.database"
},
"icon": "/assets/database/logo.svg",
"output": "",
"main": "SSCMS.Database.dll",
"applyToSites": false,
"applyToChannels": false,
"extensions": {
"permissions": {
"database_tables": {
"text": "表结构查看器",
"type": ["app"]
},
"database_query": {
"text": "SQL语句查询",
"type": ["app"]
},
"database_execute": {
"text": "执行SQL命令",
"type": ["app"]
}
},
"menus:app_plugins_all:menus": {
"database_all": {
"text": "数据库管理",
"iconClass": "fa fa-database",
"type": ["app"],
"permissions": [
"database_tables",
"database_query",
"database_execute"
],
"menus": {
"database_tables": {
"text": "表结构查看器",
"link": "/ss-admin/database/tables/",
"permissions": ["database_tables"],
"order": 1
},
"database_query": {
"text": "SQL语句查询",
"link": "/ss-admin/database/query/",
"permissions": ["database_query"],
"order": 2
},
"database_execute": {
"text": "执行SQL命令",
"link": "/ss-admin/database/execute/",
"permissions": ["database_execute"],
"order": 3
}
}
}
}
}
}