-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.25 KB
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
53
{
"name": "@thinksharpe/react-compiler-unmemo",
"version": "0.6.1",
"description": "Remove useMemo and useCallback hooks from React codebases to leverage React Compiler automatic optimization",
"license": "MIT",
"type": "module",
"author": "Thinksharpe",
"homepage": "https://github.com/thinksharpe/react-compiler-unmemo",
"repository": {
"type": "git",
"url": "git+https://github.com/thinksharpe/react-compiler-unmemo.git"
},
"bugs": {
"url": "https://github.com/thinksharpe/react-compiler-unmemo/issues"
},
"keywords": [
"react",
"react-compiler",
"react-19",
"useMemo",
"useCallback",
"codemod",
"migration",
"performance",
"automatic-memoization"
],
"bin": {
"react-compiler-unmemo": "react-compiler-unmemo.mjs",
"unmemo": "react-compiler-unmemo.mjs"
},
"main": "./react-compiler-unmemo.mjs",
"exports": {
".": "./react-compiler-unmemo.mjs"
},
"files": [
"react-compiler-unmemo.mjs",
"helpers/",
"docs/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node react-compiler-unmemo.mjs",
"test": "node --test tests/**/*.test.mjs"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"glob": "^11.0.0"
},
"devDependencies": {}
}