-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 1.96 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
{
"name": "qvp",
"description": "A tiny (900 bytes gzipped) media query utility for programmatic control of screen viewports.",
"version": "0.3.2",
"homepage": "https://github.com/panoply/qvp",
"author": {
"name": "Nikolas Savvidis",
"url": "https://github.com/panoply"
},
"repository": {
"type": "git",
"url": "git://github.com/panoply/qvp.git"
},
"bugs": {
"url": "https://github.com/panoply/qvp/issues"
},
"license": "MIT",
"type": "module",
"types": "./index.d.ts",
"module": "./index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./index.js"
}
},
"files": [
"index.js",
"index.scss",
"index.css",
"index.d.ts"
],
"keywords": [
"media",
"querymedia",
"matchMedia",
"viewport",
"responsive",
"screens"
],
"prettier": "@sissel/prettier-config",
"eslintConfig": {
"ignorePatterns": [
"package",
"types",
"index.js",
"docs/public"
],
"extends": "@sissel/eslint-config",
"rules": {
"multiline-ternary": "off"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup --minify --dts",
"gzs": "gzip-size index.js --include-original"
},
"tsup": {
"entry": [
"./src/index.ts"
],
"clean": false,
"outDir": ".",
"minify": "terser",
"terserOptions": {
"ecma": 2016
},
"format": [
"esm"
]
},
"browserslist": [
"defaults",
"Chrome >= 78",
"Firefox >= 78",
"Safari >= 10",
"Edge >= 18",
"IE >= 11",
"Opera >= 73",
"ChromeAndroid >= 75",
"ios_saf >= 9",
"Android >= 4",
"not dead"
],
"devDependencies": {
"@sissel/eslint-config": "^1.1.0",
"@sissel/prettier-config": "^1.1.0",
"browserslist": "^4.21.4",
"eslint": "^8.26.0",
"gzip-size-cli": "^5.1.0",
"prettier": "^2.7.1",
"terser": "^5.17.4",
"tsup": "^6.3.0",
"typescript": "^4.8.4"
}
}