use-memo-map 0.2.0-main.18f47d5 → 0.2.0-main.202512240237.09f104c
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 +19 -3
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "use-memo-map",
|
|
3
|
-
"version": "0.2.0-main.
|
|
3
|
+
"version": "0.2.0-main.202512240237.09f104c",
|
|
4
4
|
"description": "Memoizes calls to array map function similar to React.useMemo. Memoized results will survive next render.",
|
|
5
5
|
"files": [
|
|
6
|
+
"./*.js",
|
|
6
7
|
"./dist/"
|
|
7
8
|
],
|
|
8
9
|
"exports": {
|
|
@@ -30,12 +31,13 @@
|
|
|
30
31
|
"precommit:typescript:production": "tsc --noEmit --project ./src/tsconfig.precommit.production.json",
|
|
31
32
|
"precommit:typescript:test": "tsc --noEmit --project ./src/tsconfig.precommit.test.json",
|
|
32
33
|
"prepack": "cp ../../CHANGELOG.md . && cp ../../LICENSE . && cp ../../README.md .",
|
|
34
|
+
"start": "npm run build -- --onSuccess \"touch ../pages/package.json\" --watch",
|
|
33
35
|
"switch": "cat package.json | jq --arg SWITCH_NAME $SWITCH_NAME -r '(.[\"switch:\" + $SWITCH_NAME] // {}) as $TEMPLATE | .devDependencies += ($TEMPLATE.devDependencies // {}) | .dependencies += ($TEMPLATE.dependencies // {})' | tee ./package.json.tmp && mv ./package.json.tmp ./package.json",
|
|
34
36
|
"test": "jest"
|
|
35
37
|
},
|
|
36
38
|
"repository": {
|
|
37
39
|
"type": "git",
|
|
38
|
-
"url": "
|
|
40
|
+
"url": "https://github.com/compulim/use-memo-map.git"
|
|
39
41
|
},
|
|
40
42
|
"keywords": [
|
|
41
43
|
"react",
|
|
@@ -77,6 +79,20 @@
|
|
|
77
79
|
"react-dom": "18.0.0"
|
|
78
80
|
}
|
|
79
81
|
},
|
|
82
|
+
"pinDependencies": {
|
|
83
|
+
"@types/react": [
|
|
84
|
+
"18"
|
|
85
|
+
],
|
|
86
|
+
"@types/react-dom": [
|
|
87
|
+
"18"
|
|
88
|
+
],
|
|
89
|
+
"react": [
|
|
90
|
+
"18"
|
|
91
|
+
],
|
|
92
|
+
"react-dom": [
|
|
93
|
+
"18"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
80
96
|
"devDependencies": {
|
|
81
97
|
"@babel/preset-env": "^7.25.8",
|
|
82
98
|
"@babel/preset-react": "^7.25.7",
|
|
@@ -101,7 +117,7 @@
|
|
|
101
117
|
"react": ">=16.8.0"
|
|
102
118
|
},
|
|
103
119
|
"dependencies": {
|
|
104
|
-
"use-memo-map": "^0.2.0-main.
|
|
120
|
+
"use-memo-map": "^0.2.0-main.202512240237.09f104c",
|
|
105
121
|
"use-ref-from": "^0.1.0"
|
|
106
122
|
}
|
|
107
123
|
}
|