Interactive Angular 19 demo for @sda/notification-elements-ui with 6 sections: Bell & Feed, Notification Center, Inbox, Comments & Threads, Mention Input, and Full-Featured layout. Includes mock data, dark mode toggle, and real-time event log. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
81 lines
2.0 KiB
JSON
81 lines
2.0 KiB
JSON
{
|
|
"name": "@jsonjoy.com/buffers",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"version": "17.67.0",
|
|
"description": "Various helper utilities for working with buffers and binary data",
|
|
"author": {
|
|
"name": "streamich",
|
|
"url": "https://github.com/streamich"
|
|
},
|
|
"homepage": "https://github.com/jsonjoy-com/buffers",
|
|
"repository": "jsonjoy-com/buffers",
|
|
"license": "Apache-2.0",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/streamich"
|
|
},
|
|
"keywords": [
|
|
"buffer",
|
|
"buffers",
|
|
"uint8array",
|
|
"binary",
|
|
"utf8",
|
|
"string",
|
|
"encoding",
|
|
"decoding",
|
|
"reader",
|
|
"writer",
|
|
"streaming"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.0"
|
|
},
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"LICENSE",
|
|
"lib/"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",
|
|
"build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
|
|
"jest": "node -r ts-node/register ./node_modules/.bin/jest",
|
|
"test": "jest --maxWorkers 7",
|
|
"test:ci": "yarn jest --maxWorkers 3 --no-cache",
|
|
"coverage": "yarn test --collectCoverage",
|
|
"typedoc": "typedoc",
|
|
"build:pages": "rimraf gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",
|
|
"deploy:pages": "gh-pages -d gh-pages",
|
|
"publish-coverage-and-typedocs": "yarn typedoc && yarn coverage && yarn build:pages && yarn deploy:pages",
|
|
"typecheck": "tsc -p ."
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"js",
|
|
"tsx"
|
|
],
|
|
"transform": {
|
|
"^.+\\.tsx?$": "ts-jest"
|
|
},
|
|
"transformIgnorePatterns": [
|
|
".*/node_modules/.*"
|
|
],
|
|
"testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.tsx?$",
|
|
"rootDir": ".",
|
|
"testPathIgnorePatterns": [
|
|
"node_modules"
|
|
]
|
|
},
|
|
"peerDependencies": {
|
|
"tslib": "2"
|
|
},
|
|
"devDependencies": {
|
|
"json-pack-napi": "^0.0.2"
|
|
}
|
|
} |