@bernierllc/content-autosave-manager
Version:
Automatic content saving with debouncing, retry logic, and conflict detection
62 lines • 1.58 kB
JSON
{
"name": "@bernierllc/content-autosave-manager",
"version": "1.0.1",
"description": "Automatic content saving with debouncing, retry logic, and conflict detection",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"autosave",
"debouncing",
"retry",
"conflict-detection",
"content-management",
"version-tracking"
],
"author": "Bernier LLC",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@bernierllc/backoff-retry": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"bernierllc": {
"integration": {
"neverhub": "optional",
"neveradmin": "not-applicable",
"logger": "planned"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/BernierLLC/tools.git",
"directory": "packages/core/content-autosave-manager"
},
"bugs": {
"url": "https://github.com/BernierLLC/tools/issues"
},
"homepage": "https://github.com/BernierLLC/tools/tree/main/packages/core/content-autosave-manager#readme",
"scripts": {
"build": "tsc",
"test": "jest --watch",
"test:run": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist"
}
}