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)
32 lines
603 B
JSON
32 lines
603 B
JSON
{
|
|
"name": "connect-sqlite3",
|
|
"description": "SQLite3 session store for Connect",
|
|
"version": "0.9.16",
|
|
"author": "David Feinberg",
|
|
"main": "lib/connect-sqlite3",
|
|
"scripts": {
|
|
"test": "mocha test/test.js"
|
|
},
|
|
"dependencies": {
|
|
"sqlite3": "^5.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"connect": ">=1.0.0",
|
|
"express-session": "^1.13.0",
|
|
"mocha": "^2.3.4",
|
|
"should": "^8.2.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.4.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/rawberg/connect-sqlite3.git"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "MIT"
|
|
}
|
|
]
|
|
}
|