{
  "name": "storestack",
  "version": "1.2.7",
  "description": "Simple store solution",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "author": "Alexandre Moreau-Lemay <alexandre@unless.com> (unless.com)",
  "license": "MIT",
  "type": "module",
  "dependencies": {
    "clone-deep": "^4.0.1",
    "nanoid": "^4.0.0"
  },
  "scripts": {
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\"",
    "test": "node --experimental-vm-modules ./node_modules/.bin/jest --config jestconfig.json --coverage",
    "prepare": "husky install && yarn build",
    "prepublishOnly": "yarn test && yarn eslint",
    "preversion": "yarn eslint",
    "version": "yarn format && git add -A src",
    "postversion": "git push && git push --tags",
    "publish": "yarn version --patch && git add -A && git commit -m \"Updated version for publising\" && git push && npm publish"
  },
  "devDependencies": {
    "@swc/cli": "^0.1.57",
    "@swc/core": "^1.3.6",
    "@swc/jest": "^0.2.23",
    "@types/clone-deep": "^4.0.1",
    "@types/jest": "^29.1.2",
    "@typescript-eslint/eslint-plugin": "^5.39.0",
    "@typescript-eslint/parser": "^5.39.0",
    "core-js": "^3.25.5",
    "eslint": "^8.25.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": ">=6",
    "jest": "^29.1.2",
    "jest-environment-jsdom": "^29.1.2",
    "lint-staged": ">=10",
    "prettier": "^2.7.1",
    "ts-jest": "^29.0.3",
    "tsconfig-to-swcconfig": "^2.0.1",
    "typescript": "^4.8.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/amoreaulemay/storestack"
  },
  "keywords": [
    "state management",
    "store",
    "multi-store"
  ],
  "bugs": {
    "url": "https://github.com/amoreaulemay/storestack/issues"
  },
  "files": [
    "lib/**/*"
  ],
  "homepage": "https://github.com/amoreaulemay/storestack#readme",
  "lint-staged": {
    "*.js": [
      "eslint --cache --fix",
      "prettier --write"
    ]
  }
}
