-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "@effector/redux-devtools-adapter",
"version": "0.0.0-real-version-will-be-set-on-ci",
"description": "Simple adapter to connect Effector's Inspect API to Redux DevTools",
"repository": "[email protected]:effector/redux-devtools-adapter.git",
"author": "AlexandrHoroshih <[email protected]>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"type": "module",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build:code": "vite build",
"build:types": "tsc",
"test": "vitest run",
"build": "pnpm build:code && pnpm build:types",
"dev": "pnpm run build && vite",
"preview": "pnpm run build && vite preview"
},
"devDependencies": {
"@effector/redux-devtools-adapter": "link:",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"effector": "23.0.0",
"effector-react": "^23.0.1",
"fs-extra": "^11.1.1",
"mvp.css": "^1.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vitest": "^0.30.1",
"zx": "^7.2.1"
},
"peerDependencies": {
"effector": "^22.8.1 || ^23.0.0"
}
}