@norbix.ai/react-redux 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,107 @@
1
+ {
2
+ "name": "@norbix.ai/react-redux",
3
+ "version": "0.1.0",
4
+ "description": "Official Norbix bindings for React + Redux Toolkit. RTK Query helpers (cache, dedup, refetch, invalidation) over the typed Norbix SDK.",
5
+ "author": "UAB Isidos",
6
+ "license": "MIT",
7
+ "homepage": "https://norbix.ai",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/norbix-code/react-redux.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/norbix-code/react-redux/issues"
14
+ },
15
+ "keywords": [
16
+ "norbix",
17
+ "baas",
18
+ "react",
19
+ "redux",
20
+ "redux-toolkit",
21
+ "rtk-query",
22
+ "hooks",
23
+ "sdk"
24
+ ],
25
+ "type": "module",
26
+ "main": "./dist/index.cjs",
27
+ "module": "./dist/index.js",
28
+ "types": "./dist/index.d.ts",
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/index.d.ts",
32
+ "import": "./dist/index.js",
33
+ "require": "./dist/index.cjs"
34
+ }
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "engines": {
42
+ "node": ">=18"
43
+ },
44
+ "sideEffects": false,
45
+ "scripts": {
46
+ "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
47
+ "build": "npm run clean && tsup",
48
+ "typecheck": "tsc --noEmit",
49
+ "lint": "eslint \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\"",
50
+ "lint:fix": "eslint \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" --fix",
51
+ "format": "prettier --write \"**/*.{ts,tsx,js,json,md,yml,yaml}\"",
52
+ "format:check": "prettier --check \"**/*.{ts,tsx,js,json,md,yml,yaml}\"",
53
+ "test": "vitest run",
54
+ "test:watch": "vitest",
55
+ "test:coverage": "vitest run --coverage",
56
+ "audit": "npm audit --omit=dev --audit-level=high && npm audit signatures",
57
+ "release:dry": "semantic-release --dry-run",
58
+ "prepare": "husky || true",
59
+ "prepublishOnly": "npm run build"
60
+ },
61
+ "peerDependencies": {
62
+ "@norbix.ai/ts": ">=1.3.0",
63
+ "@reduxjs/toolkit": ">=2.0.0",
64
+ "react": ">=18.0.0",
65
+ "react-redux": ">=9.0.0"
66
+ },
67
+ "devDependencies": {
68
+ "@commitlint/cli": "^21.2.2",
69
+ "@commitlint/config-conventional": "^21.2.2",
70
+ "@eslint/js": "^10.0.1",
71
+ "@norbix.ai/ts": "^1.3.0",
72
+ "@reduxjs/toolkit": "^2.12.0",
73
+ "@semantic-release/commit-analyzer": "^13.0.1",
74
+ "@semantic-release/github": "^12.0.9",
75
+ "@semantic-release/npm": "^13.1.5",
76
+ "@semantic-release/release-notes-generator": "^14.1.1",
77
+ "@testing-library/react": "^16.3.3",
78
+ "@types/node": "^26.6.1",
79
+ "@types/react": "^19.3.0",
80
+ "@typescript-eslint/eslint-plugin": "^8.70.0",
81
+ "@typescript-eslint/parser": "^8.70.0",
82
+ "@vitest/coverage-v8": "^4.1.11",
83
+ "conventional-changelog-conventionalcommits": "^9.3.1",
84
+ "eslint": "^10.10.0",
85
+ "eslint-config-prettier": "^10.1.8",
86
+ "eslint-plugin-import-x": "^4.17.1",
87
+ "eslint-plugin-prettier": "^5.5.6",
88
+ "eslint-plugin-react-hooks": "^7.1.1",
89
+ "happy-dom": "^20.14.5",
90
+ "husky": "^9.1.6",
91
+ "prettier": "^3.9.7",
92
+ "react": "^19.3.0",
93
+ "react-dom": "^19.3.0",
94
+ "react-redux": "^9.3.0",
95
+ "semantic-release": "^25.0.9",
96
+ "tsup": "^8.5.1",
97
+ "typescript": "^6.0.3",
98
+ "vitest": "^4.1.11"
99
+ },
100
+ "publishConfig": {
101
+ "access": "public",
102
+ "provenance": true
103
+ },
104
+ "overrides": {
105
+ "esbuild": "^0.28.1"
106
+ }
107
+ }