@lumina-study/user-settings-redux
Version:
Redux store for Lumina Study user settings with unstorage persistence
89 lines • 2.49 kB
JSON
{
"name": "@lumina-study/user-settings-redux",
"version": "1.0.0",
"description": "Redux store for Lumina Study user settings with unstorage persistence",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/luminastudy/user-settings-redux.git"
},
"keywords": [
"redux",
"user-settings",
"configuration",
"lumina-study",
"unstorage",
"persistence"
],
"author": "Lumina Study",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"bugs": {
"url": "https://github.com/luminastudy/user-settings-redux/issues"
},
"homepage": "https://github.com/luminastudy/user-settings-redux#readme",
"dependencies": {
"@lumina-study/user-settings": "^1.0.0",
"@reduxjs/toolkit": "^2.0.0",
"unstorage": "^1.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-redux": ">=7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@release-it/keep-a-changelog": "^5.0.0",
"@types/node": "^20.0.0",
"@types/react": "^19.2.6",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^4.0.10",
"cspell": "^9.3.2",
"eslint": "^9.39.1",
"eslint-config-agent": "^1.8.6",
"eslint-config-publishable-package-json": "^1.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"husky": "^9.1.7",
"knip": "^5.70.2",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"release-it": "^17.10.0",
"typescript": "^5.0.0",
"vitest": "^4.0.10"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"spell": "cspell lint '**/*.{ts,js,md,json}' --gitignore",
"spell:check": "cspell lint '**/*.{ts,js,md,json}' --gitignore",
"knip": "knip",
"release": "release-it",
"release:dry": "release-it --dry-run --increment patch"
}
}