-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "nextjs-effector",
"version": "0.0.0-set-by-ci",
"description": "High-level effector.js bindings for Next.js framework",
"repository": "[email protected]:risenforces/nextjs-effector.git",
"author": "Evgeny Zakharov <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"main": "index.umd.cjs",
"module": "index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist",
"LICENSE"
],
"scripts": {
"test": "vitest run",
"build:code": "vite build",
"build:types": "tsc",
"build": "yarn build:code && yarn build:types"
},
"devDependencies": {
"@effector/next": "^0.3.0",
"@types/react": "^18.0.37",
"@vitejs/plugin-react": "^4.0.0",
"effector": "^22.8.1",
"effector-react": "^22.5.1",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vitest": "^0.30.1"
},
"peerDependencies": {
"@effector/next": "^0.5.0",
"effector": "^22.8.1",
"effector-react": "^22.5.1",
"next": ">=12.0.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
}