mirror of
https://gitee.com/nocobase/nocobase.git
synced 2024-12-05 05:38:23 +08:00
29209a1ede
Some checks are pending
Build docker image / build-and-push (push) Waiting to run
Build pro image / build-and-push (push) Waiting to run
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase backend test / sqlite-test (20, false) (push) Waiting to run
NocoBase backend test / sqlite-test (20, true) (push) Waiting to run
NocoBase backend test / postgres-test (public, 20, nocobase, false) (push) Waiting to run
NocoBase backend test / postgres-test (public, 20, nocobase, true) (push) Waiting to run
NocoBase backend test / postgres-test (public, 20, public, false) (push) Waiting to run
NocoBase backend test / postgres-test (public, 20, public, true) (push) Waiting to run
NocoBase backend test / postgres-test (user_schema, 20, nocobase, false) (push) Waiting to run
NocoBase backend test / postgres-test (user_schema, 20, nocobase, true) (push) Waiting to run
NocoBase backend test / postgres-test (user_schema, 20, public, false) (push) Waiting to run
NocoBase backend test / postgres-test (user_schema, 20, public, true) (push) Waiting to run
NocoBase backend test / mysql-test (20, false) (push) Waiting to run
NocoBase backend test / mysql-test (20, true) (push) Waiting to run
NocoBase backend test / mariadb-test (20, false) (push) Waiting to run
NocoBase backend test / mariadb-test (20, true) (push) Waiting to run
NocoBase frontEnd test / frontend-test (20) (push) Waiting to run
Test on Windows / build (push) Waiting to run
38 lines
1.3 KiB
JSON
38 lines
1.3 KiB
JSON
{
|
|
"name": "@nocobase/plugin-acl",
|
|
"displayName": "Access control",
|
|
"displayName.zh-CN": "权限控制",
|
|
"description": "Based on roles, resources, and actions, access control can precisely manage interface configuration permissions, data operation permissions, menu access permissions, and plugin permissions.",
|
|
"description.zh-CN": "基于角色、资源和操作的权限控制,可以精确控制界面配置权限、数据操作权限、菜单访问权限、插件权限。",
|
|
"version": "1.4.0-alpha.15",
|
|
"license": "AGPL-3.0",
|
|
"main": "./dist/server/index.js",
|
|
"homepage": "https://docs.nocobase.com/handbook/acl",
|
|
"homepage.zh-CN": "https://docs-cn.nocobase.com/handbook/acl",
|
|
"keywords": [
|
|
"Users & permissions"
|
|
],
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^8.5.8",
|
|
"async-mutex": "^0.3.2",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@nocobase/acl": "1.x",
|
|
"@nocobase/actions": "1.x",
|
|
"@nocobase/cache": "1.x",
|
|
"@nocobase/client": "1.x",
|
|
"@nocobase/database": "1.x",
|
|
"@nocobase/server": "1.x",
|
|
"@nocobase/test": "1.x",
|
|
"@nocobase/utils": "1.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
"directory": "packages/plugins/acl"
|
|
}
|
|
}
|