-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 KB
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
{
"name": "effector-react-slots",
"version": "2.3.0",
"description": "Effector library for slots implementation in React",
"type": "module",
"source": "src/index.tsx",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"private": false,
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/space307/effector-react-slots.git"
},
"author": "Viktor Pasynok",
"maintainers": [
{
"name": "Viktor Pasynok",
"email": "v.pasynok@space307.com"
}
],
"scripts": {
"build": "parcel build --no-source-maps --no-cache --detailed-report",
"prettier:check": "prettier --check 'src/**/*.{ts,tsx}'",
"prepublishOnly": "npm run build",
"prettier:fix": "prettier --write 'src/**/*.{ts,tsx}'",
"test": "jest --runInBand --no-cache --no-watchman"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/space307/effector-react-slots/issues"
},
"homepage": "https://github.com/space307/effector-react-slots#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": ["effector", "react", "slots"],
"devDependencies": {
"@arkweid/lefthook": "~0.7.7",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@sucrase/jest-plugin": "3.0.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"effector": "^22.1.2",
"effector-react": "^22.0.6",
"jest": "29.4.2",
"parcel": "2.8.3",
"prettier": "2.8.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "4.9.5",
"jest-environment-jsdom": "29.4.2",
"tslib": "2.5.0"
},
"peerDependencies": {
"effector": ">= 21.8.0 <23",
"effector-react": ">= 21.3.0 <23",
"react": ">= 16.8 <19.0.0"
},
"targets": {
"main": {
"optimize": true
}
}
}