-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "@dvlden/is-webview",
"description": "Detect if a visitor is coming through a webview or a native browser using user-agent.",
"keywords": [
"detect",
"parse",
"sniff",
"webview",
"user-agent",
"browser",
"mobile"
],
"version": "1.0.0",
"main": "dist/is-webview.js",
"module": "dist/is-webview.mjs",
"typings": "dist/is-webview.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"test": "vitest"
},
"repository": "github:dvlden/is-webview",
"author": {
"name": "Nenad Novaković",
"email": "n.dvlden@gmail.com",
"url": "https://dvl.sh/"
},
"license": "MIT",
"packageManager": "pnpm@7.11.0",
"devDependencies": {
"@dvlden/config": "^0.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"esbuild": "^0.17.4",
"prettier": "^2.8.3",
"rollup": "^3.10.1",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vitest": "^0.27.3"
}
}