Skip to content

Commit f93fcfb

Browse files
committed
chore: fix package json properly, add namespace
1 parent 0a087f6 commit f93fcfb

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "angular-redux-workspace",
2+
"name": "@reduxjs/angular-redux-workspace",
33
"version": "0.0.0",
44
"scripts": {
55
"ng": "ng",

projects/angular-redux-demo/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component } from '@angular/core'
2-
import {injectSelector, injectDispatch} from "angular-redux";
2+
import {injectSelector, injectDispatch} from "@reduxjs/angular-redux";
33
import { decrement, increment } from './store/counter-slice'
44
import { RootState } from './store'
55

projects/angular-redux/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
# Angular Redux
22

3-
Unofficial Angular bindings for [Redux](https://github.com/reduxjs/redux).
3+
Official Angular bindings for [Redux](https://github.com/reduxjs/redux).
44
Performant and flexible.
55

6+
> [!WARNING]
7+
> This package is in alpha and is rapidly developing.
8+
69
# Features
710

811
- Compatible with Angular 18+

projects/angular-redux/package.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
{
2-
"name": "angular-redux",
2+
"name": "@reduxjs/angular-redux",
33
"version": "0.0.1",
4+
"keywords": [
5+
"angular",
6+
"redux"
7+
],
8+
"license": "MIT",
9+
"author": "Corbin Cruthcley <[email protected]> (https://github.com/crutchcorn)",
410
"peerDependencies": {
5-
"@angular/common": "^18.2.0",
6-
"@angular/core": "^18.2.0"
11+
"@angular/common": ">=17.3.0",
12+
"@angular/core": ">=17.3.0",
13+
"redux": "^5.0.0"
14+
},
15+
"peerDependenciesMeta": {
16+
"redux": {
17+
"optional": true
18+
}
719
},
820
"dependencies": {
921
"tslib": "^2.3.0"

0 commit comments

Comments
 (0)