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)
34 lines
736 B
JSON
Executable File
34 lines
736 B
JSON
Executable File
{
|
|
"name": "wide-align",
|
|
"version": "1.1.5",
|
|
"description": "A wide-character aware text alignment function for use on the console or with fixed width fonts.",
|
|
"main": "align.js",
|
|
"scripts": {
|
|
"test": "tap --coverage test/*.js"
|
|
},
|
|
"keywords": [
|
|
"wide",
|
|
"double",
|
|
"unicode",
|
|
"cjkv",
|
|
"pad",
|
|
"align"
|
|
],
|
|
"author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org/)",
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iarna/wide-align"
|
|
},
|
|
"//": "But not version 5 of string-width, as that's ESM only",
|
|
"dependencies": {
|
|
"string-width": "^1.0.2 || 2 || 3 || 4"
|
|
},
|
|
"devDependencies": {
|
|
"tap": "*"
|
|
},
|
|
"files": [
|
|
"align.js"
|
|
]
|
|
}
|