recoil-next 0.1.0 → 0.3.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 +93 -0
- package/dist/index.cjs +427 -614
- package/dist/index.d.cts +3 -20
- package/dist/index.d.ts +3 -20
- package/dist/index.mjs +428 -615
- package/package.json +64 -65
package/package.json
CHANGED
|
@@ -1,68 +1,67 @@
|
|
|
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
|
-
"files": [
|
|
28
|
-
"dist"
|
|
29
|
-
],
|
|
30
|
-
"scripts": {
|
|
31
|
-
"prebuild": "echo \"declare module 'hamt_plus';\" > hamt_plus.d.ts",
|
|
32
|
-
"build": "rollup -c",
|
|
33
|
-
"test": "vitest",
|
|
34
|
-
"test:ui": "vitest --ui",
|
|
35
|
-
"test:run": "vitest run",
|
|
36
|
-
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
37
|
-
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
38
|
-
"typecheck": "tsc --noEmit"
|
|
39
|
-
},
|
|
40
|
-
"peerDependencies": {
|
|
41
|
-
"react": ">=18"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
45
|
-
"@rollup/plugin-typescript": "^12.1.4",
|
|
46
|
-
"@testing-library/jest-dom": "^6.6.3",
|
|
47
|
-
"@testing-library/react": "^16.3.0",
|
|
48
|
-
"@types/node": "^18.15.3",
|
|
49
|
-
"@types/react": "^18.2.39",
|
|
50
|
-
"@types/react-dom": "^18.2.14",
|
|
51
|
-
"@typescript-eslint/eslint-plugin": "^8.36.0",
|
|
52
|
-
"@vitest/ui": "^2.1.8",
|
|
53
|
-
"eslint-config-prettier": "^10.1.5",
|
|
54
|
-
"eslint-plugin-prettier": "^5.5.1",
|
|
55
|
-
"hamt_plus": "^1.0.2",
|
|
56
|
-
"@types/hamt_plus": "^1.0.0",
|
|
57
|
-
"jsdom": "^26.1.0",
|
|
58
|
-
"react-test-renderer": "^19.1.0",
|
|
59
|
-
"rollup": "^4.0.0",
|
|
60
|
-
"rollup-plugin-dts": "^6.2.1",
|
|
61
|
-
"tslib": "^2.6.0",
|
|
62
|
-
"typescript": "^5.4.2",
|
|
63
|
-
"vitest": "^2.1.8"
|
|
64
|
-
},
|
|
65
|
-
"dependencies": {
|
|
66
|
-
"@rollup/plugin-commonjs": "^28.0.6"
|
|
2
|
+
"name": "recoil-next",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Continuation of Recoil - A state management library for React",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Mutesa Cedric",
|
|
7
|
+
"email": "mutesacedric@gmail.com",
|
|
8
|
+
"url": "https://github.com/Mutesa-Cedric"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"recoil",
|
|
12
|
+
"state-management",
|
|
13
|
+
"react",
|
|
14
|
+
"state-management-library"
|
|
15
|
+
],
|
|
16
|
+
"main": "dist/index.cjs",
|
|
17
|
+
"module": "dist/index.mjs",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./dist/index.d.ts",
|
|
22
|
+
"import": "./dist/index.mjs",
|
|
23
|
+
"require": "./dist/index.cjs"
|
|
67
24
|
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist/"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "rollup -c",
|
|
31
|
+
"test": "vitest",
|
|
32
|
+
"test:run": "vitest run",
|
|
33
|
+
"typecheck": "tsc --noEmit",
|
|
34
|
+
"release": "bumpp && npm publish"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"react": ">=18"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"hamt_plus": "^1.0.2"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
44
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
45
|
+
"@rollup/plugin-typescript": "^12.1.4",
|
|
46
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
47
|
+
"@testing-library/react": "^16.3.0",
|
|
48
|
+
"@types/hamt_plus": "^1.0.0",
|
|
49
|
+
"@types/node": "^18.15.3",
|
|
50
|
+
"@types/react": "^18.2.39",
|
|
51
|
+
"@types/react-dom": "^18.2.14",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^8.36.0",
|
|
53
|
+
"@vitest/ui": "^2.1.8",
|
|
54
|
+
"bumpp": "^10.2.2",
|
|
55
|
+
"eslint-config-prettier": "^10.1.5",
|
|
56
|
+
"eslint-plugin-prettier": "^5.5.1",
|
|
57
|
+
"jsdom": "^26.1.0",
|
|
58
|
+
"react-test-renderer": "^19.1.0",
|
|
59
|
+
"rollup": "^4.0.0",
|
|
60
|
+
"rollup-plugin-dts": "^6.2.1",
|
|
61
|
+
"tslib": "^2.6.0",
|
|
62
|
+
"typescript": "^5.4.2",
|
|
63
|
+
"vitest": "^2.1.8"
|
|
64
|
+
},
|
|
65
|
+
"repository": "https://github.com/Mutesa-Cedric/Recoil-next.git",
|
|
66
|
+
"license": "MIT"
|
|
68
67
|
}
|