-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 1.92 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
{
"version": "1.2.0",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
},
"./solid": {
"import": "./dist/esm/solid.js",
"require": "./dist/cjs/solid.js",
"types": "./dist/solid.d.ts"
}
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"prepare": "npm run build"
},
"peerDependencies": {
"effector": "^22 || ^23",
"react": ">=16.14.0",
"solid-js": "~1.4.8"
},
"peerDependenciesMeta": {
"solid-js": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "~7.18.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "~7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"react": ">=16.14.0",
"solid-js": "~1.4.8",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/babel__core": "~7.1.19",
"@types/jest": "^28.1.6",
"@types/react": "^17 || ^18",
"babel-preset-solid": "~1.4.8",
"effector": "^22.1.2",
"jest-environment-jsdom": "^28.1.3",
"jest": "^28.1.0",
"rollup-plugin-dts": "~4.2.2",
"rollup-plugin-esbuild": "~4.9.1",
"rollup-plugin-typescript2": "~0.32.1",
"rollup": "^2.77.2",
"ts-jest": "^28.0.1",
"tslib": "^2.4.0",
"tsup": "^6.2.0",
"typescript": "^4.9.4"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "effector-factorio",
"author": "Anton Kosykh",
"repository": {
"type": "git",
"url": "https://github.com/kelin2025/effector-factorio"
}
}