@ptolemy2002/react-proxy-context 1.2.1 → 2.0.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/README.md +7 -8
- package/dist/main.d.ts +30 -0
- package/dist/main.js +721 -0
- package/package.json +74 -45
- package/index.js +0 -872
package/package.json
CHANGED
|
@@ -1,48 +1,77 @@
|
|
|
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
|
-
|
|
2
|
+
"name": "@ptolemy2002/react-proxy-context",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/Ptolemy2002/react-proxy-context"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "npm run build && vite --port 3000",
|
|
12
|
+
"build": "tsc -b ./tsconfig.lib.json && vite build",
|
|
13
|
+
"lint": "eslint .",
|
|
14
|
+
"preview": "vite preview",
|
|
15
|
+
"postinstall": "npx typesync",
|
|
16
|
+
"uninstall": "bash ./scripts/uninstall.sh",
|
|
17
|
+
"reinstall": "bash ./scripts/reinstall.sh",
|
|
18
|
+
"release": "bash ./scripts/release.sh",
|
|
19
|
+
"release-patch": "bash ./scripts/release.sh patch",
|
|
20
|
+
"release-minor": "bash ./scripts/release.sh minor",
|
|
21
|
+
"release-major": "bash ./scripts/release.sh major"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@ptolemy2002/js-utils": "^3.0.2",
|
|
25
|
+
"@ptolemy2002/react-force-rerender": "^2.0.0",
|
|
26
|
+
"@ptolemy2002/react-hook-result": "^2.1.1",
|
|
27
|
+
"@ptolemy2002/react-mount-effects": "^2.0.0",
|
|
28
|
+
"@ptolemy2002/react-utils": "^3.0.0",
|
|
29
|
+
"is-callable": "^1.2.7",
|
|
30
|
+
"nanoid": "^5.0.7",
|
|
31
|
+
"react": "^18.3.1",
|
|
32
|
+
"react-dom": "^18.3.1"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@eslint/js": "^9.11.1",
|
|
36
|
+
"@ptolemy2002/js-utils": "^3.0.2",
|
|
37
|
+
"@ptolemy2002/react-force-rerender": "^2.0.0",
|
|
38
|
+
"@ptolemy2002/react-hook-result": "^2.1.1",
|
|
39
|
+
"@ptolemy2002/react-mount-effects": "^2.0.0",
|
|
40
|
+
"@ptolemy2002/react-utils": "^3.0.0",
|
|
41
|
+
"@types/babel__generator": "^7.6.8",
|
|
42
|
+
"@types/babel__template": "^7.4.4",
|
|
43
|
+
"@types/babel__traverse": "^7.20.6",
|
|
44
|
+
"@types/eslint__js": "~8.42.3",
|
|
45
|
+
"@types/is-callable": "~1.1.2",
|
|
46
|
+
"@types/less": "~3.0.6",
|
|
47
|
+
"@types/node": "^22.7.4",
|
|
48
|
+
"@types/prop-types": "^15.7.13",
|
|
49
|
+
"@types/react": "^18.3.10",
|
|
50
|
+
"@types/react-dom": "^18.3.0",
|
|
51
|
+
"@vitejs/plugin-react": "^4.3.2",
|
|
52
|
+
"eslint": "^9.11.1",
|
|
53
|
+
"eslint-plugin-react": "^7.37.1",
|
|
54
|
+
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
55
|
+
"eslint-plugin-react-refresh": "^0.4.12",
|
|
56
|
+
"globals": "^15.9.0",
|
|
57
|
+
"is-callable": "^1.2.7",
|
|
58
|
+
"less": "^4.2.0",
|
|
59
|
+
"nanoid": "^5.0.7",
|
|
60
|
+
"path": "^0.12.7",
|
|
61
|
+
"react": "^18.3.1",
|
|
62
|
+
"react-dom": "^18.3.1",
|
|
63
|
+
"typescript": "^5.5.3",
|
|
64
|
+
"typescript-eslint": "^8.7.0",
|
|
65
|
+
"vite": "^5.4.8",
|
|
66
|
+
"vite-plugin-dts": "^4.2.3"
|
|
67
|
+
},
|
|
68
|
+
"exports": {
|
|
69
|
+
".": {
|
|
70
|
+
"types": "./dist/lib/main.d.ts",
|
|
71
|
+
"default": "./dist/main.js"
|
|
47
72
|
}
|
|
73
|
+
},
|
|
74
|
+
"files": [
|
|
75
|
+
"dist"
|
|
76
|
+
]
|
|
48
77
|
}
|