-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.82 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"author": "Rafael De León",
"bugs": {
"url": "https://github.com/rafde/con-estado/issues"
},
"dependencies": {
"fast-equals": "^5.0.1",
"mutative": "^1.1.0"
},
"description": "Deeply nested state manager for ReactJS",
"devDependencies": {
"@eslint/compat": "2.0.0",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.39.1",
"@parcel/bundler-library": "2.16.0",
"@parcel/packager-ts": "2.16.0",
"@parcel/transformer-typescript-types": "2.16.0",
"@stylistic/eslint-plugin": "5.6.0",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.0",
"@types/node": "24.10.0",
"@types/react": "19.2.2",
"@vitest/coverage-v8": "3.2.4",
"@vitest/eslint-plugin": "1.4.3",
"eslint": "9.37.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-compiler": "19.0.0-beta-714736e-20250131",
"eslint-plugin-react-hooks": "7.0.0",
"eslint-plugin-testing-library": "7.13.3",
"fast-equals": "5.3.2",
"globals": "16.4.0",
"happy-dom": "20.0.10",
"husky": "9.1.7",
"lint-staged": "16.2.6",
"parcel": "2.16.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"rimraf": "6.0.1",
"typescript": "5.9.3",
"typescript-eslint": "8.46.1",
"vitest": "3.2.4"
},
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types.d.ts"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/rafde/con-estado#readme",
"keywords": [
"hooks",
"hook",
"management",
"manager",
"react",
"reducer",
"state",
"store",
"typescript"
],
"license": "MIT",
"lint-staged": {
"*.ts(x)": [
"npm run lint"
]
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"name": "con-estado",
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "*",
"@rollup/rollup-linux-x64-gnu": "*",
"@swc/core-linux-x64-gnu": "*"
},
"peerDependencies": {
"@types/react": ">= 16.8.0 || >= 17.0.0 || >= 18.0.0 || >= 19.0.0",
"react": ">= 16.8.0 || >= 17.0.0 || >= 18.0.0 || >= 19.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafde/con-estado.git"
},
"scripts": {
"build": "rimraf dist && parcel build --log-level verbose --no-cache",
"lint": "eslint --cache --fix src/ __tests__/",
"prepare": "husky",
"test": "vitest",
"test:coverage": "vitest --coverage",
"tsc": "tsc",
"version": "node util/versioning.cjs && git add jsr.json",
"postversion": "HUSKY=0 git push && git push --follow-tags",
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch",
"version:prerelease": "npm version prerelease --preid=pre"
},
"sideEffects": false,
"source": "src/index.ts",
"types": "dist/types.d.ts",
"version": "0.11.0",
"website": "https://rafde.github.io/con-estado"
}