-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
103 lines (103 loc) · 3.3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "styled-breakpoints",
"version": "14.1.4",
"license": "MIT",
"description": "Simple and powerful css breakpoints for styled-components and emotion",
"main": "./styled-breakpoints/create-styled-breakpoints-theme/index.js",
"types": "./styled-breakpoints/create-styled-breakpoints-theme/index.d.ts",
"sideEffects": false,
"scripts": {
"commit": "cross-env git-cz",
"test:unit": "cross-env vitest run",
"test:unit:watch": "cross-env vitest",
"test:unit:coverage": "cross-env vitest --coverage run",
"test:types": "npx check-dts",
"test:bench": "cross-env vitest run bench",
"test:size": "cross-env size-limit",
"lint": "cross-env eslint . --fix.",
"format": "cross-env prettier './**/**/**.{json,js,ts}' --write",
"coverage": "cross-env cat ./coverage/lcov.info | coveralls",
"semantic-release": "cross-env semantic-release",
"contributors:add": "cross-env all-contributors add",
"contributors:generate": "cross-env all-contributors generate",
"prepare": "husky install"
},
"homepage": "https://github.com/mg901/styled-breakpoints#readme",
"repository": {
"type": "git",
"url": "https://github.com/mg901/styled-breakpoints.git"
},
"bugs": {
"url": "https://github.com/mg901/styled-breakpoints/issues"
},
"author": "Maxim Alyoshin <mgreen097@gmail.com> (https://github.com/mg901)",
"keywords": [
"media",
"query",
"media-query",
"media-queries",
"styled",
"react",
"javascript",
"css-in-js",
"breakpoint",
"breakpoints",
"css-in-react",
"typescript",
"styled-media-query",
"styled media query",
"styled components",
"styled-components"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.1",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@size-limit/file": "^11.0.2",
"@size-limit/webpack": "^11.0.2",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^19.0.1",
"@vitest/coverage-istanbul": "^1.0.1",
"@vitest/coverage-v8": "^1.0.1",
"all-contributors-cli": "^6.17.4",
"check-dts": "^0.8.0",
"commitizen": "^4.2.1",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^8.0.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-vitest": "^0.4.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"jsdom": "^25.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"semantic-release-githubsquash": "^0.2.12",
"size-limit": "^11.0.2",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}