packages/queue/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@valkyr/queue",
  "version": "0.0.0",
  "description": "A browser base queue solution with offline persistence using indexeddb.",
  "repository": "https://github.com/cmdo/valkyr.git",
  "bugs": "https://github.com/cmdo/valkyr/issues",
  "license": "MIT",
  "type": "module",
  "main": "./src/index.ts",
  "types": "./src/index.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "queue",
    "web",
    "spa"
  ],
  "scripts": {
    "build": "tsc -b ./tsconfig.build.json",
    "flush": "npm run clean && rm -rf ./node_modules",
    "clean": "rm -rf ./.turbo ./dist",
    "ncu": "ncu -u",
    "lint": "eslint .",
    "test": "NODE_OPTIONS=--experimental-vm-modules pnpm exec jest"
  },
  "jest": {
    "preset": "@valkyr/jest"
  },
  "eslintConfig": {
    "parserOptions": {
      "project": "./tsconfig.json"
    },
    "extends": [
      "@valkyr"
    ]
  },
  "lint-staged": {
    "*": [
      "prettier --write --ignore-unknown"
    ],
    "*.{ts,tsx}": [
      "eslint --fix"
    ]
  },
  "dependencies": {
    "idb": "^7.1.1",
    "nanoid": "^4.0.2",
    "rxjs": "^7.8.1"
  },
  "devDependencies": {
    "@valkyr/jest": "workspace:*",
    "fake-indexeddb": "^4.0.1"
  }
}