-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.9 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
{
"name": "monarc",
"version": "3.3.2",
"description": "MONARC's Obviously Not A Redux Clone",
"author": "Matteo Cavalleri",
"homepage": "https://cvlmtg.github.io/monarc/",
"repository": {
"url": "git+https://github.com/cvlmtg/monarc.git",
"type": "git"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/monarc.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build --rollupTypes",
"clean": "rm -rf dist",
"lint": "dts lint src/ test/",
"prepare": "dts build --rollupTypes",
"size": "size-limit",
"start": "dts watch",
"test": "dts test --passWithNoTests"
},
"keywords": [
"react",
"context",
"store",
"hooks",
"autosave",
"undo",
"redo",
"reducer",
"state",
"functional",
"immutable",
"flux",
"redux"
],
"jest": {
"testEnvironment": "jsdom"
},
"engines": {
"node": ">=14"
},
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@tsconfig/create-react-app": "^1.0.3",
"@tsconfig/recommended": "^1.0.1",
"@types/jsan": "^3.1.2",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.18",
"dts-cli": "^1.6.3",
"husky": "^8.0.3",
"immutable": "^4.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux-devtools-extension": "^2.13.9",
"size-limit": "^8.1.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@redux-devtools/serialize": "^0.4.1",
"jsan": "^3.1.14",
"tiny-invariant": "^1.3.1"
},
"size-limit": [
{
"path": "dist/monarc.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/monarc.esm.js",
"limit": "10 KB"
}
]
}