UNPKG

@kansnpms/storage-pipe

Version:

Browser storage and cookies monitoring - Real-time tracking of localStorage, sessionStorage, cookies, and IndexedDB

111 lines (110 loc) 3 kB
{ "name": "@kansnpms/storage-pipe", "version": "2.5.0", "description": "Browser storage and cookies monitoring - Real-time tracking of localStorage, sessionStorage, cookies, and IndexedDB", "main": "dist/index.js", "module": "dist/index.esm.js", "browser": "dist/storage-monitor.umd.js", "types": "dist/index.d.ts", "files": [ "dist/", "src/", "README.md", "CHANGELOG.md" ], "scripts": { "build": "rollup -c --bundleConfigAsCjs", "build:watch": "rollup -c --watch", "dev": "rollup -c --watch --environment NODE_ENV:development", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:integration": "jest --testPathPattern=integration --passWithNoTests", "test:e2e": "jest --testPathPattern=e2e --passWithNoTests", "test:performance": "echo 'Performance tests not yet implemented'", "lint": "eslint src/ --ext .js,.ts", "lint:fix": "eslint src/ --ext .js,.ts --fix", "format": "prettier --write .", "format:check": "prettier --check .", "type-check": "tsc --noEmit", "clean": "rimraf dist/", "prepublishOnly": "npm run clean && npm run build" }, "keywords": [ "console", "logging", "debugging", "storage", "cookies", "localStorage", "sessionStorage", "indexedDB", "monitoring", "real-time", "websocket", "browser", "development", "ai-friendly", "beta" ], "author": "Console Log Pipe Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/kgptapps/consolelogpipe.git", "directory": "packages/storage-monitor" }, "bugs": { "url": "https://github.com/kgptapps/consolelogpipe/issues" }, "homepage": "https://github.com/kgptapps/consolelogpipe/tree/main/packages/storage-monitor#readme", "engines": { "node": ">=14.0.0" }, "peerDependencies": { "@kansnpms/console-log-pipe-cli": "^2.3.0" }, "dependencies": {}, "devDependencies": { "@babel/core": "^7.22.0", "@babel/preset-env": "^7.22.0", "@rollup/plugin-babel": "^6.0.0", "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.0.0", "@rollup/plugin-terser": "^0.4.0", "@types/jest": "^29.5.0", "eslint": "^8.42.0", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "rimraf": "^5.0.0", "rollup": "^3.25.0", "typescript": "^5.1.0", "ws": "^8.14.0", "express": "^4.18.0", "cors": "^2.8.5", "chalk": "^4.1.2" }, "jest": { "testEnvironment": "jsdom", "transform": { "^.+\\.js$": "babel-jest" }, "collectCoverageFrom": [ "src/**/*.{js,ts}", "!src/**/*.d.ts", "!src/**/*.test.{js,ts}" ], "coverageThreshold": { "global": { "branches": 65, "functions": 65, "lines": 65, "statements": 65 } } }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }