-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
142 lines (142 loc) · 3.69 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
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"private": true,
"name": "nrgy",
"version": "0.0.45",
"description": "The library for reactive programming using efficient computing and MVC/MVVM patterns",
"license": "MIT",
"author": "Mikhail Nasyrov (https://github.com/mnasyrov)",
"homepage": "https://github.com/mnasyrov/nrgy",
"bugs": "https://github.com/mnasyrov/nrgy/issues",
"repository": "github:mnasyrov/nrgy",
"workspaces": [
".",
"benchmarks"
],
"type": "module",
"main": "index.cjs",
"module": "index.js",
"types": "index.d.ts",
"files": [
"dist",
"docs",
"LICENSE",
"README.md"
],
"exports": {
".": {
"require": "./index.cjs",
"default": "./index.js"
},
"./mvc": {
"require": "./mvc.cjs",
"default": "./mvc.js"
},
"./mvc-react": {
"require": "./mvc-react.cjs",
"default": "./mvc-react.js"
},
"./store": {
"require": "./store.cjs",
"default": "./store.js"
},
"./ditox": {
"require": "./ditox.cjs",
"default": "./ditox.js"
},
"./ditox-react": {
"require": "./ditox-react.cjs",
"default": "./ditox-react.js"
},
"./react": {
"require": "./react.cjs",
"default": "./react.js"
},
"./rx-effects": {
"require": "./rx-effects.cjs",
"default": "./rx-effects.js"
},
"./rxjs": {
"require": "./rxjs.cjs",
"default": "./rxjs.js"
},
"./rxjs-react": {
"require": "./rxjs-react.cjs",
"default": "./rxjs-react.js"
}
},
"scripts": {
"prepare": "test -d .git && husky || true",
"clean": "rm -rf build coverage dist .eslintcache",
"lint": "npm run eslint && npm run tsc",
"eslint": "eslint --cache --max-warnings 0 \"src/**\"",
"eslint-fix": "npm run eslint -- --fix",
"tsc": "tsc --noEmit --jsx react-jsx",
"test": "jest",
"build": "tsx build.ts",
"pack": "npm run build && cd dist && npm pack",
"preversion": "npm run build && npm run lint && npm run test && git add --all",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"postversion": "npm run changelog && git add .",
"publish": "npm run build && cd dist && npm publish"
},
"optionalDependencies": {
"ditox": ">=2.2 || >=3",
"ditox-react": ">=2.2 || >=3",
"react": ">=17 || >=18",
"rx-effects": ">=1.0",
"rxjs": ">=7.0"
},
"devDependencies": {
"@testing-library/dom": "10.3.1",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"conventional-changelog-cli": "5.0.0",
"ditox": "3.0.0",
"ditox-react": "3.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.2.0",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.7",
"prettier": "3.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-test-renderer": "18.3.1",
"rxjs": "7.8.1",
"ts-jest": "29.1.5",
"tsup": "8.1.0",
"tsx": "4.16.2",
"typescript": "5.4.4"
},
"attributions": [
{
"energy.svg": [
"UXWing, https://uxwing.com/license",
"https://uxwing.com/wp-content/themes/uxwing/download/computers-mobile-hardware/energy-icon.svg"
]
}
],
"keywords": [
"state",
"effect",
"management",
"reactive",
"rxjs",
"react",
"typescript",
"atom",
"signals",
"MVC",
"MVVM"
]
}