-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "@igorkowalczyk/is-browser",
"description": "🏔️ Add support for browser specific variants in Tailwind.css",
"version": "5.0.4",
"author": "Igor Kowalczyk",
"license": "MIT",
"sideEffects": false,
"repository": "IgorKowalczyk/is-browser",
"funding": "https://github.com/sponsors/igorkowalczyk",
"bugs": "https://github.com/IgorKowalczyk/is-browser/issues",
"homepage": "https://github.com/IgorKowalczyk/is-browser#readme",
"type": "module",
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.cjs"
},
"scripts": {
"build": "rollup -c",
"format": "prettier . --write --ignore-unknown --cache",
"format:check": "prettier . --check --cache",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@igorkowalczyk/eslint-config": "3.0.2",
"@igorkowalczyk/prettier-config": "3.0.2",
"eslint": "9.20.1",
"prettier": "3.5.1",
"rollup": "4.34.8",
"tailwindcss": "3.4.17"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0"
},
"files": [
"README.md",
"dist"
],
"keywords": [
"tailwindcss",
"react",
"firefox",
"chrome",
"safari"
],
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}