-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "supports-webp-sync",
"version": "1.1.3",
"description": "Checks if the browser supports WebP. Cheaply and synchronously.",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"browser": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:cjs": "tsc index.ts --declaration --outDir lib",
"build:esm": "tsc index.ts --target es6 --declaration --outDir lib",
"build": "npm run build:esm && mv lib/index.js lib/index.esm.js && npm run build:cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihordiachenko/supports-webp-sync.git"
},
"keywords": [
"webp",
"image",
"browser",
"compability",
"support",
"detect",
"detection"
],
"author": "Ihor Diachenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/ihordiachenko/supports-webp-sync/issues"
},
"homepage": "https://github.com/ihordiachenko/supports-webp-sync#readme",
"devDependencies": {
"typescript": "^4.4.2"
}
}