-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "@liuqiang1357/react-breakpoints",
"version": "1.0.6",
"description": "React hooks for getting the current media breakpoint and value",
"types": "dist/types/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "run-s build:types build:code",
"build:types": "tsc -p tsconfig.types.json",
"build:code": "rollup -c",
"lint": "eslint . --fix",
"format": "prettier . --write",
"test": "jest --passWithNoTests",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liuqiang1357/react-breakpoints.git"
},
"keywords": [
"react",
"breakpoints",
"media-query"
],
"author": "liuqiang1357 <liuqiang1357@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/liuqiang1357/react-breakpoints/issues"
},
"homepage": "https://github.com/liuqiang1357/react-breakpoints",
"dependencies": {
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
"@types/lodash-es": "^4.17.6",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}