-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
129 lines (129 loc) · 3.51 KB
/
package.json
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "remini",
"version": "1.4.2",
"description": "Simple and powerful state management in React and Preact",
"repository": {
"url": "https://github.com/re-js/remini"
},
"bugs": {
"url": "https://github.com/re-js/remini/issues"
},
"homepage": "https://github.com/re-js/remini#readme",
"license": "MIT",
"types": "src/index.d.ts",
"main": "dist/remini.js",
"module": "dist/remini.module.js",
"umd:main": "dist/remini.umd.js",
"source": "src/index.js",
"files": [
"src",
"dist",
"hooks-bindings/dist",
"hooks-bindings/src",
"hooks-bindings/package.json",
"preact/dist",
"preact/src",
"preact/package.json",
"react/dist",
"react/src",
"react/package.json"
],
"scripts": {
"test": "jest",
"clear-cache": "jest --clearCache",
"build": "yarn clean && microbundle build --raw --generateTypes false && microbundle build --raw --target web --cwd hooks-bindings --generateTypes false && microbundle build --raw --target node --cwd preact --generateTypes false && microbundle build --raw --target node --cwd react --generateTypes false",
"dev": "microbundle watch --raw --format cjs",
"clean": "rm -rf hooks-bindings/dist preact/dist react/dist dist"
},
"dependencies": {
"reactive-box": ">=0.9.0 && <3.0.0",
"unsubscriber": ">=2.2.0 && <3.0.0",
"evemin": ">=2.0.0 && <3.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.23.5",
"@babel/preset-typescript": "7.23.3",
"@testing-library/preact": "3.2.2",
"@testing-library/react": "13.2.0",
"@types/jest": "27.5.0",
"@types/react": "18.0.9",
"htm": "3.1.1",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"microbundle": "0.15.1",
"preact": "10.8.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"typescript": "4.7.4"
},
"peerDependencies": {
"react": ">=16.8",
"preact": ">=10.2"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"preact": {
"optional": true
}
},
"author": "Slava Bereza <[email protected]> (http://betula.co)",
"keywords": [
"state",
"model",
"reactive",
"shared state",
"state management",
"react hooks",
"react",
"preact",
"typescript",
"javascript",
"remini",
"minimal",
"minimalistic",
"light",
"small",
"quick",
"any scale",
"fast"
],
"browserslist": [
"last 2 Chrome versions"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"browser": "./dist/remini.module.js",
"umd": "./dist/remini.umd.js",
"import": "./dist/remini.mjs",
"require": "./dist/remini.js"
},
"./hooks-bindings": {
"types": "./hooks-bindings/src/index.d.ts",
"browser": "./hooks-bindings/dist/hooks-bindings.module.js",
"umd": "./hooks-bindings/dist/hooks-bindings.umd.js",
"import": "./hooks-bindings/dist/hooks-bindings.mjs",
"require": "./hooks-bindings/dist/hooks-bindings.js"
},
"./preact": {
"types": "./preact/src/index.d.ts",
"browser": "./preact/dist/preact.module.js",
"umd": "./preact/dist/preact.umd.js",
"import": "./preact/dist/preact.mjs",
"require": "./preact/dist/preact.js"
},
"./react": {
"types": "./react/src/index.d.ts",
"browser": "./react/dist/react.module.js",
"umd": "./react/dist/react.umd.js",
"import": "./react/dist/react.mjs",
"require": "./react/dist/react.js"
}
}
}