@kashcode/reduxish 0.5.0 → 0.7.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 +51 -51
package/package.json
CHANGED
|
@@ -1,52 +1,52 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
2
|
+
"name": "@kashcode/reduxish",
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"description": "A tiny, fully-typed Redux-inspired state management library with store enhancement/plugin support for functionality such as thunking, logging, etc with full type inference on the enhanced store. Complies with flux architecture and fully compatible with react-redux bindings.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./dist/index.js",
|
|
9
|
+
"./dist/*": "./dist/*"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc",
|
|
16
|
+
"start": "node dist/index.js",
|
|
17
|
+
"test": "jest --coverage",
|
|
18
|
+
"test:watch": "jest --watch",
|
|
19
|
+
"prepublishOnly": "npm run test && npm run build"
|
|
20
|
+
},
|
|
21
|
+
"author": "Kasope <kasopej@gmail.com>",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/kasopej/reduxish.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/kasopej/reduxish/issues"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/kasopej/reduxish#readme",
|
|
31
|
+
"keywords": [
|
|
32
|
+
"redux",
|
|
33
|
+
"state-management",
|
|
34
|
+
"typescript",
|
|
35
|
+
"frontend",
|
|
36
|
+
"store",
|
|
37
|
+
"middleware"
|
|
38
|
+
],
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"deep-freeze": "^0.0.1"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/deep-freeze": "^0.1.5",
|
|
44
|
+
"@types/jest": "30.0.0",
|
|
45
|
+
"@types/node": "^25.2.0",
|
|
46
|
+
"ajv": "^8.17.1",
|
|
47
|
+
"cross-env": "^10.1.0",
|
|
48
|
+
"jest": "30.2.0",
|
|
49
|
+
"ts-jest": "29.4.6",
|
|
50
|
+
"ts-node": "10.9.2"
|
|
51
|
+
}
|
|
52
|
+
}
|