-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
105 lines (105 loc) · 2.85 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
{
"name": "@effector/reflect",
"version": "0.0.0-real-version-will-be-set-on-ci",
"repository": "effector/reflect",
"description": "☄️ Attach effector stores to react components without hooks",
"maintainers": [
"Sergey Sova <[email protected]> (https://sova.dev)",
"e.fedotov <[email protected]>"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.cjs",
"default": "./index.mjs"
},
"./scope": {
"types": "./scope.d.ts",
"import": "./scope.mjs",
"require": "./scope.js",
"default": "./scope.mjs"
}
},
"main": "index.cjs",
"module": "index.mjs",
"typings": "index.d.ts",
"files": [
"Readme.md",
"core",
"index.d.ts",
"ssr.d.ts",
"scope.d.ts",
"index.cjs",
"index.cjs.map",
"index.mjs",
"index.mjs.map",
"scope.js",
"scope.js.map",
"scope.mjs",
"scope.mjs.map"
],
"scripts": {
"validate:dist": "node ./validate_dist.mjs",
"test:code": "vitest run ./src",
"test:types": "tsc -p ./type-tests",
"test": "pnpm test:code && pnpm test:types",
"build": "pnpm clear-build && node ./build.mjs",
"clear-build": "rm -rf dist",
"prepublishOnly": "pnpm build",
"prepare": "husky install"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.3",
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@testing-library/dom": "^7.31.2",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^26.0.24",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"babel-jest": "^29.4.3",
"babel-plugin-module-resolver": "^4.1.0",
"effector": "^23.1.0",
"effector-react": "^23.1.0",
"eslint": "^8.56.0",
"eslint-kit": "^6.12.0",
"fs-extra": "^9.1.0",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"pretty-ms": "^8.0.0",
"publint": "^0.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.18.0",
"rollup-plugin-typescript2": "^0.34.1",
"svelte": "^3.55.1",
"tsd": "^0.19.1",
"typescript": "^5.3.3",
"uglify-js": "^3.17.4",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.0.4",
"zx": "^7.2.3"
},
"peerDependencies": {
"effector": "^23.1.0",
"effector-react": "^23.1.0",
"react": ">=16.8.0 <19.0.0"
}
}