-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.13 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
{
"name": "@faceless-ui/window-info",
"version": "3.0.0-beta.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage:": "https://facelessui.com/docs/window-info",
"repository": "[email protected]:faceless-ui/window-info.git",
"description": "A React library for subscribing to window events",
"author": {
"email": "[email protected]",
"name": "Jacob Fletcher",
"url": "https://jacobsfletch.com"
},
"bugs": {
"url": "https://github.com/faceless-ui/window-info/issues",
"email": "[email protected]"
},
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/jacobsfletch"
}
],
"contributors": [],
"scripts": {
"build": "yarn lint:src && tsc --project tsconfig.build.json",
"build:demo": "webpack --config webpack.build-demo.config.js",
"dev": "webpack serve --config webpack.dev.config.js",
"lint:src": "eslint ./src",
"lint:demo": "eslint ./demo",
"test": "jest"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"@types/node": "^14.14.22",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@types/webpack": "^5.28.5",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.0.2",
"react": "^19.0.0-rc.0",
"react-dom": "^19.0.0-rc.0",
"react-refresh": "^0.13.0",
"react-refresh-typescript": "^2.0.4",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"files": [
"dist"
]
}