forked from theKashey/react-focus-on
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.75 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
{
"name": "react-focus-on",
"version": "3.9.1",
"description": "The final solution for WAI ARIA compatible modal dialogs or full-screen tasks.",
"main": "dist/es5/index.js",
"scripts": {
"test": "ts-react-toolbox test",
"bootstrap": "ts-react-toolbox init",
"dev": "ts-react-toolbox dev",
"test:ci": "ts-react-toolbox test --runInBand --coverage",
"build": "ts-react-toolbox build",
"prepublish": "yarn build && yarn changelog",
"release": "ts-react-toolbox release",
"lint": "ts-react-toolbox lint",
"static": "ts-react-toolbox publish",
"format": "ts-react-toolbox format",
"analyze": "ts-react-toolbox analyze",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"size": "npx size-limit",
"link:rfl": "rsync -av ../react-focus-lock node_modules/ --exclude node_modules --exclude .git",
"link:rf": "rsync -av ../react-remove-scroll node_modules/ --exclude node_modules --exclude .git",
"link:sb": "rsync -av ../react-remove-scroll-bar node_modules/ --exclude node_modules --exclude .git",
"link:fl": "rsync -av ../focus-lock node_modules/ --exclude node_modules --exclude .git",
"link:ss": "rsync -av ../react-remove-scroll-bar/node_modules/react-style-singleton node_modules/ --exclude node_modules --exclude .git",
"link:all": "yarn link:fl & yarn link:rfl & yarn link:ss & yarn link:rf & yarn link:sb"
},
"repository": {
"type": "git",
"url": "https://github.com/theKashey/react-focus-on.git"
},
"sideEffects": [
"**/sidecar.js"
],
"author": "Anton Korzunov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.8",
"conventional-changelog-cli": "^2.0.12",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-powerplug": "^1.0.0",
"ts-react-toolbox": "^0.2.10"
},
"dependencies": {
"aria-hidden": "^1.2.2",
"react-focus-lock": "^2.9.4",
"react-remove-scroll": "^2.5.6",
"react-style-singleton": "^2.2.0",
"tslib": "^2.3.1",
"use-callback-ref": "^1.3.0",
"use-sidecar": "^1.1.2"
},
"engines": {
"node": ">=8.5.0"
},
"peerDependencies": {
"@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es5/index.d.ts",
"files": [
"dist",
"UI",
"sidecar"
],
"keywords": [
"react",
"modal",
"focus-management",
"scroll",
"isolation"
],
"resolutions": {
"typescript": "^3.8.0"
},
"homepage": "https://github.com/theKashey/react-focus-on#readme"
}