Features: - Full RBAC with 3 roles (superadmin/manager/contributor) - Ownership tracking on posts, tasks, campaigns, projects - Task system: assign to anyone, filter combobox, visibility scoping - Team members merged into users table (single source of truth) - Post thumbnails on kanban cards from attachments - Publication link validation before publishing - Interactive onboarding tutorial with Settings restart - Full Arabic/English i18n with RTL layout support - Language toggle in sidebar, IBM Plex Sans Arabic font - Brand-based visibility filtering for non-superadmins - Manager can only create contributors - Profile completion flow for new users - Cookie-based sessions (express-session + SQLite)
42 lines
694 B
JSON
42 lines
694 B
JSON
{
|
|
"name": "aggregate-error",
|
|
"version": "3.1.0",
|
|
"description": "Create an error from multiple errors",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/aggregate-error",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava && tsd"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"keywords": [
|
|
"aggregate",
|
|
"error",
|
|
"combine",
|
|
"multiple",
|
|
"many",
|
|
"collection",
|
|
"iterable",
|
|
"iterator"
|
|
],
|
|
"dependencies": {
|
|
"clean-stack": "^2.0.0",
|
|
"indent-string": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^2.4.0",
|
|
"tsd": "^0.7.1",
|
|
"xo": "^0.25.3"
|
|
}
|
|
}
|