fix(plugin-field-sort): add plugin description (#5720)

* fix(plugin-field-sort): add plugin description

* fix(core): update package version

* fix(plugin-field-sort): fix package version

* fix(core): fix package version
This commit is contained in:
Junyi 2024-11-25 23:08:07 +08:00 committed by GitHub
parent baa5ab8ada
commit f12bf91c87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 2 deletions

View File

@ -4,7 +4,7 @@
"main": "lib/index.js",
"license": "AGPL-3.0",
"devDependencies": {
"@nocobase/utils": "1.4.0-alpha.11",
"@nocobase/utils": "1.5.0-alpha.5",
"async-mutex": "^0.5.0"
}
}

View File

@ -1,6 +1,11 @@
{
"name": "@nocobase/plugin-field-sort",
"version": "1.5.0-alpha.5",
"license": "AGPL-3.0",
"displayName": "Collection field: Sort",
"displayName.zh-CN": "数据表字段:排序",
"description": "Used to sort the data in a collection.",
"description.zh-CN": "用于对数据表的数据进行排序。",
"main": "dist/server/index.js",
"peerDependencies": {
"@nocobase/actions": "1.x",
@ -11,5 +16,8 @@
"@nocobase/test": "1.x",
"lodash": "4.17.21",
"sequelize": "^6.26.0"
}
},
"keywords": [
"Collection fields"
]
}