-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.58 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
{
"name": "@zedux/react",
"version": "2.0.0-beta.1",
"description": "A Molecular State Engine for React",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"author": "Joshua Claunch",
"bugs": {
"url": "https://github.com/Omnistac/zedux/issues"
},
"dependencies": {
"@zedux/atoms": "2.0.0-beta.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.1",
"@types/react-dom": "^19.0.2",
"@types/react": "^19.0.1",
"react-dom": "^19.0.0",
"react": "^19.0.0"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"README.md"
],
"homepage": "https://omnistac.github.io/zedux/",
"keywords": [
"atom",
"atomic",
"composable",
"DI",
"easy",
"flexible",
"machine",
"molecular",
"react",
"redux",
"simple",
"state",
"testable",
"zedux"
],
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0"
},
"repository": {
"directory": "packages/react",
"type": "git",
"url": "https://github.com/Omnistac/zedux.git"
},
"scripts": {
"build": "../../scripts/build.js",
"lint": "eslint 'src/**/*.@(tsx|ts)' && tsc --noEmit",
"prepublishOnly": "yarn build",
"test": "cd ../.. && yarn test packages/react --collectCoverageFrom=packages/react/src/**/*.ts"
},
"sideEffects": false,
"type": "module"
}