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)
35 lines
842 B
JSON
35 lines
842 B
JSON
{
|
|
"name": "streamsearch",
|
|
"version": "1.1.0",
|
|
"author": "Brian White <mscdex@mscdex.net>",
|
|
"description": "Streaming Boyer-Moore-Horspool searching for node.js",
|
|
"main": "./lib/sbmh.js",
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@mscdex/eslint-config": "^1.1.0",
|
|
"eslint": "^7.32.0"
|
|
},
|
|
"scripts": {
|
|
"test": "node test/test.js",
|
|
"lint": "eslint --cache --report-unused-disable-directives --ext=.js .eslintrc.js lib test",
|
|
"lint:fix": "npm run lint -- --fix"
|
|
},
|
|
"keywords": [
|
|
"stream",
|
|
"horspool",
|
|
"boyer-moore-horspool",
|
|
"boyer-moore",
|
|
"search"
|
|
],
|
|
"licenses": [{
|
|
"type": "MIT",
|
|
"url": "http://github.com/mscdex/streamsearch/raw/master/LICENSE"
|
|
}],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/mscdex/streamsearch.git"
|
|
}
|
|
}
|